Changes between Version 24 and Version 25 of code/tools/CMake
- Timestamp:
- May 21, 2013, 2:56:24 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/tools/CMake
v24 v25 49 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 52 === Using CMake with Eclipse === 53 You can also use CMake to create project files for Eclipse CDT 4.0.[[br]] 54 55 '''Note:''' Eclipse does not like your build directory being a sub directory of your source directory. In order to use Eclipse please create a build directory on the same level as your source directory. 56 57 To do that use following command (in source directory): 58 59 {{{ 60 $ cd ~/orxonox/ 61 $ ls 62 trunk 63 $ mkdir build 64 $ cd build 65 $ cmake ../trunk -G"Eclipse CDT4 - Unix Makefiles" 66 }}} 67 68 CMake now generated a fully working Eclipse project: Go to [wiki:EclipseIDE#ImporttoEclipse this site] to learn how to import it. 69 51 70 === Using CMake with KDevelop === 52 71 … … 70 89 71 90 72 === Using CMake with Eclipse ===73 You can also use CMake to create project files for Eclipse CDT 4.0.[[br]]74 75 '''Note:''' Eclipse does not like your build directory being a sub directory of your source directory. In order to use Eclipse please create a build directory on the same level as your source directory.76 77 To do that use following command (in source directory):78 79 {{{80 $ cd ~/orxonox/81 $ ls82 trunk83 $ mkdir build84 $ cd build85 $ cmake ../trunk -G"Eclipse CDT4 - Unix Makefiles"86 }}}87 88 CMake now generated a fully working Eclipse project: Go to [wiki:EclipseIDE#ImporttoEclipse this site] to learn how to import it.89 91 90 92 == Debug CMake paths ==