https://github.com/n8tbyte/cpp-format
cpp-format
https://github.com/n8tbyte/cpp-format
Last synced: 5 days ago
JSON representation
cpp-format
- Host: GitHub
- URL: https://github.com/n8tbyte/cpp-format
- Owner: n8tbyte
- Created: 2026-05-26T13:39:27.000Z (21 days ago)
- Default Branch: main
- Last Pushed: 2026-05-26T15:28:48.000Z (20 days ago)
- Last Synced: 2026-05-26T15:30:38.111Z (20 days ago)
- Language: CMake
- Size: 243 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```