| 266 | } |
| 267 | |
| 268 | void CMakePreferences::buildDirChanged(int index) |
| 269 | { |
| 270 | CMake::setOverrideBuildDirIndex( m_project, index ); |
| 271 | const Path buildDir = CMake::currentBuildDir(m_project); |
| 272 | initAdvanced(); |
| 273 | updateCache(buildDir); |
| 274 | qCDebug(CMAKE) << "builddir Changed" << buildDir; |
| 275 | emit changed(); |
| 276 | } |
| 277 | |
| 278 | void CMakePreferences::cacheUpdated() |
| 279 | { |
nothing calls this directly
no test coverage detected