| 95 | } |
| 96 | |
| 97 | void CMakePreferences::initAdvanced() |
| 98 | { |
| 99 | m_prefsUi->environment->setCurrentProfile( CMake::currentEnvironment(m_project) ); |
| 100 | m_prefsUi->installationPrefix->setText(CMake::currentInstallDir(m_project).toLocalFile()); |
| 101 | m_prefsUi->installationPrefix->setMode(KFile::Directory); |
| 102 | setBuildType(CMake::currentBuildType(m_project)); |
| 103 | m_prefsUi->extraArguments->setEditText(CMake::currentExtraArguments(m_project)); |
| 104 | m_prefsUi->cMakeExecutable->setText(CMake::currentCMakeExecutable(m_project).toLocalFile()); |
| 105 | } |
| 106 | |
| 107 | void CMakePreferences::setBuildType(const QString& buildType) |
| 108 | { |
nothing calls this directly
no test coverage detected