Personal tools

Log in

Changes

From IGEP - ISEE Wiki

Jump to: navigation, search

Cmake

No change in size, 11:49, 9 February 2014
CMAKE Build
first we must create the cmake configuration file named: CMakeLists.txt with this content:
<pre>PROJECT(Hello_World2)
ADD_EXECUTABLE(hello_world2 hello_World2 main.c)
</pre>
Where: