skov-example-projects/helloworld-cpp-cmake/README.md

21 lines
203 B
Markdown
Raw Permalink Normal View History

2024-08-02 14:41:53 +01:00
# 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
```