| .. | ||
| CMakeLists.txt | ||
| exampleProject.cpp | ||
| README.md | ||
Linux compilation
> mkdir build
> cd build
> cmake -DCMAKE_BUILD_TYPE=Debug ..
> make
Run program
Run program ./ExampleProject and check output, which should be "Hello World";
| .. | ||
| CMakeLists.txt | ||
| exampleProject.cpp | ||
| README.md | ||
> mkdir build
> cd build
> cmake -DCMAKE_BUILD_TYPE=Debug ..
> make
Run program ./ExampleProject and check output, which should be "Hello World";