Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/glemaitre/cmake-skeleton
C++ skeleton project with cmake support
https://github.com/glemaitre/cmake-skeleton
Last synced: 8 days ago
JSON representation
C++ skeleton project with cmake support
- Host: GitHub
- URL: https://github.com/glemaitre/cmake-skeleton
- Owner: glemaitre
- License: other
- Created: 2015-11-04T18:53:50.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-23T12:02:10.000Z (about 7 years ago)
- Last Synced: 2024-10-28T02:06:10.609Z (about 2 months ago)
- Language: CMake
- Size: 7.81 KB
- Stars: 4
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CMake-skeleton
## Compilation
* Create a build folder:
`mkdir build`
* Move to the created folder:
`cd build`
* Create the `MakeFile` via cmake:
`cmake ../src`
* Compile the code to generate the executable:
`make` or `make -j n` where `n` is the number of cores to use for the compilation
* A folder bin will be created at the same level as the build directory.