| 66 |  | return getOSIndependentAppPath(); | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 67 |  | } | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 68 |  |  | 
 
 
 
 
 
 
 
 
 
 
 | 69 | < | QString getOniSplitExeAbsolutePath(){ | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 69 | > | // Absolute paths | 
 
 
 
 
 | 70 | > | QString getOniSplitExecutableAbsolutePath(){ | 
 
 
 
 
 | 71 | > | return getAppPath() + "/" + GlobalVars::ToolsFolder + "/" + GlobalVars::OniSplitString; | 
 
 
 
 
 | 72 | > | } | 
 
 
 
 
 | 73 | > |  | 
 
 
 
 
 | 74 | > | QString getXmlToolsExecutableAbsolutePath(){ | 
 
 
 
 
 | 75 | > | return getAppPath() + "/" + GlobalVars::ToolsFolder + "/" + GlobalVars::XmlToolsString; | 
 
 
 
 
 | 76 | > | } | 
 
 
 
 
 | 77 | > |  | 
 
 
 
 
 | 78 | > | // Executables (includes mono if necessary) | 
 
 
 
 
 | 79 | > | QString getOniSplitExecutable(){ | 
 
 
 
 
 
 
 
 
 
 
 | 80 |  |  | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 81 |  | #ifdef Q_OS_MAC | 
 
 
 
 
 
 
 
 
 
 
 | 82 | < | return getMonoExecutablePath() + " " + getAppPath() + "/" + GlobalVars::ToolsFolder + "/" + GlobalVars::OniSplitString; | 
 
 
 
 
 
 
 
 
 | 82 | > | return getMonoExecutablePath() + " " + getOniSplitExecutableAbsolutePath(); | 
 
 
 
 
 
 
 
 
 
 
 | 83 |  | #else | 
 
 
 
 
 
 
 
 
 
 
 | 84 | < | return getAppPath() + "/" + GlobalVars::ToolsFolder + "/" + GlobalVars::OniSplitString; | 
 
 
 
 
 
 
 
 
 | 84 | > | return getOniSplitExecutableAbsolutePath(); | 
 
 
 
 
 
 
 
 
 
 
 | 85 |  | #endif | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 86 |  | } | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 87 |  |  | 
 
 
 
 
 
 
 
 
 
 
 | 88 | < | QString getXmlToolsExeAbsolutePath(){ | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 89 | < | return getAppPath() + "/" + GlobalVars::ToolsFolder + "/" + GlobalVars::XmlToolsString; | 
 
 
 
 
 
 
 
 
 | 88 | > | QString getXmlToolsExecutable(){ | 
 
 
 
 
 | 89 | > | return getXmlToolsExecutableAbsolutePath(); | 
 
 
 
 
 
 
 
 
 
 
 | 90 |  | } | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 91 |  |  | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 92 |  | #ifdef Q_OS_MAC |