skov-example-projects/helloworld-cpp-cmake/README.md
2024-08-02 14:07:33 +00:00

21 lines
203 B
Markdown

# helloworld-cpp-cmake
```
mkdir build
cd build
cmake ..
make
./helloworld-cpp-cmake
```
```
mkdir build
cd build
cmake .. -CMAKE_BUILD_TYPE=Release
make
sudo make install
./helloworld-cpp-cmake
```