Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 23 and Version 24 of code/tools/CMake


Ignore:
Timestamp:
May 14, 2013, 2:32:25 PM (12 years ago)
Author:
smerkli
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/tools/CMake

    v23 v24  
    1919
    2020== Rebuilding the CMakeCache ==
    21 Sometime it happens, that CMake won't accept the new setting you added some where in a CMakeLists.txt. As a workaround -- I have not found a better solution yet -- delete the the toplevel CMakeCache, and rebuild every Makefile.
     21Sometimes 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.
    2222{{{
    2323$ cd <some/branch/or/trunk> && ./cmakeclearcache && cmake .
     
    4747== Using CMake generated project files ==
    4848
    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.
     49CMake 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.
    5050
    5151=== Using CMake with KDevelop ===