Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/glemaitre/cmake-gtest-skeleton
https://github.com/glemaitre/cmake-gtest-skeleton
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/glemaitre/cmake-gtest-skeleton
- Owner: glemaitre
- License: other
- Created: 2015-12-07T22:52:48.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-07T22:53:17.000Z (about 9 years ago)
- Last Synced: 2024-10-28T02:06:14.064Z (about 2 months ago)
- Language: CMake
- Size: 6.84 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- 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.