An open API service indexing awesome lists of open source software.

https://github.com/n8tbyte/cpp-format

cpp-format
https://github.com/n8tbyte/cpp-format

Last synced: 5 days ago
JSON representation

cpp-format

Awesome Lists containing this project

README

          

# cpp-format

```cmd
rm -rf *
cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release ..
cmake --build .
strip bin/main.exe
./bin/main.exe
```

```cmd
rm -rf build
mkdir build
cd build
conan install .. --output-folder=. --build=missing
cmake .. --preset conan-release
cmake --build --preset conan-release
strip bin/main.exe
./bin/main.exe
```