https://github.com/youngermaster/cmake-tutorials
This a repo with some examples of CMake courses I made
https://github.com/youngermaster/cmake-tutorials
Last synced: about 1 year ago
JSON representation
This a repo with some examples of CMake courses I made
- Host: GitHub
- URL: https://github.com/youngermaster/cmake-tutorials
- Owner: Youngermaster
- License: mit
- Created: 2021-03-29T15:37:15.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-17T19:19:21.000Z (about 5 years ago)
- Last Synced: 2025-03-22T09:32:41.550Z (over 1 year ago)
- Language: CMake
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CMake-Tutorials
This a repo with some examples of CMake courses I made
## How to build in CMake
### Windows
Use:
```
Cmake -S . -B out/build
cd out/build
MSBuild.exe [name of the solution] -property:Configuration=Release
```
The flag `-property:Configuration=Release` to add the release option, or if you want the `Debug`
version use this flag `-property:Configuration=Debug`.