diff options
Diffstat (limited to 'Source/QtDialog/QCMake.cxx')
-rw-r--r-- | Source/QtDialog/QCMake.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/QtDialog/QCMake.cxx b/Source/QtDialog/QCMake.cxx index e826527..0621aaf 100644 --- a/Source/QtDialog/QCMake.cxx +++ b/Source/QtDialog/QCMake.cxx @@ -35,7 +35,8 @@ QCMake::QCMake(QObject* p) #if defined(Q_OS_WIN) this->CMakeExecutable = appDir.filePath("cmake.exe"); #elif defined(Q_OS_MAC) -# error "need to implement for Mac OS X" + appDir.cd("../../../"); // path to cmake in build directory (need to fix for deployment) + this->CMakeExecutable = appDir.filePath("cmake"); #else this->CMakeExecutable = appDir.filePath("cmake"); #endif |