Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/glemaitre/inf3c-td-1
https://github.com/glemaitre/inf3c-td-1
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/glemaitre/inf3c-td-1
- Owner: glemaitre
- License: other
- Created: 2015-12-01T14:35:28.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-11T23:49:58.000Z (about 9 years ago)
- Last Synced: 2024-11-03T23:42:40.470Z (2 months ago)
- Language: CMake
- Size: 10.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- 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.