Changes between Version 23 and Version 24 of code/tools/CMake
- Timestamp:
- May 14, 2013, 2:32:25 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/tools/CMake
v23 v24 19 19 20 20 == Rebuilding the CMakeCache == 21 Sometime it happens, that CMake won't accept the new setting you added somewhere in a CMakeLists.txt. As a workaround -- I have not found a better solution yet -- delete the the toplevel CMakeCache, and rebuild every Makefile.21 Sometimes it can happen that CMake won't accept the new setting you added somewhere in a CMakeLists.txt. As a workaround -- I have not found a better solution yet -- delete the the toplevel CMakeCache, and rebuild every Makefile. 22 22 {{{ 23 23 $ cd <some/branch/or/trunk> && ./cmakeclearcache && cmake . … … 47 47 == Using CMake generated project files == 48 48 49 CMake is capable of creating project files for various IDEs so it's easier to integrate the project into the IDE of your choice. Following sections give a quick overview of possible ways to generate these project files. We don't care which (or if any) IDE you use, but we strongly advise you to use one to write clean code quickly and to benefit from code completion and other benefits the IDE provides.49 CMake is capable of creating project files for various IDEs so it's easier to integrate the project into the IDE of your choice. The following sections give a quick overview of possible ways to generate these project files. We don't care which (or if any) IDE you use, but we strongly advise you to use one to write clean code quickly and to benefit from code completion and other benefits the IDE provides. 50 50 51 51 === Using CMake with KDevelop ===