Difference between revisions of "Cmake"
From IGEP - ISEE Wiki
Manel Caro (talk | contribs) |
Manel Caro (talk | contribs) |
||
Line 1: | Line 1: | ||
= Start Developing with CMAKE = | = Start Developing with CMAKE = | ||
− | + | The cross-platform, open-source make system. CMake is used to control the software compilation process using simple platform and compiler independent configuration files. CMake generates native makefiles and workspaces that can be used in the compiler environment of your choice. CMake is quite sophisticated: it is possible to support complex environments requiring system configuration, pre-processor generation, code generation, and template instantiation. | |
− | + | __TOC__<br> | |
− | [http://www.cmake.org/Wiki/CMake | + | == Useful information[http://www.cmake.org/Wiki/CMake <br>] == |
− | + | [http://www.cmake.org/Wiki/CMake CMAKE wiki page]<br> | |
− | Using Ubuntu 12.04 is very simple install it using apt-get as: | + | == Install cmake == |
+ | |||
+ | Using Ubuntu 12.04 is very simple install it using apt-get as: | ||
<pre>sudo apt-get install cmake cmake-gui | <pre>sudo apt-get install cmake cmake-gui | ||
</pre> | </pre> |
Revision as of 10:49, 9 February 2014
Start Developing with CMAKE
The cross-platform, open-source make system. CMake is used to control the software compilation process using simple platform and compiler independent configuration files. CMake generates native makefiles and workspaces that can be used in the compiler environment of your choice. CMake is quite sophisticated: it is possible to support complex environments requiring system configuration, pre-processor generation, code generation, and template instantiation.
Useful information
Install cmake
Using Ubuntu 12.04 is very simple install it using apt-get as:
sudo apt-get install cmake cmake-gui