https://github.com/daniel1302/cmakelists
It is a skeleton for an application using CMake. A sketch includes integration with google benchmarks and google tests.
https://github.com/daniel1302/cmakelists
Last synced: 5 months ago
JSON representation
It is a skeleton for an application using CMake. A sketch includes integration with google benchmarks and google tests.
- Host: GitHub
- URL: https://github.com/daniel1302/cmakelists
- Owner: daniel1302
- Created: 2019-07-21T10:51:00.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-21T15:29:15.000Z (almost 7 years ago)
- Last Synced: 2025-10-10T09:54:40.658Z (9 months ago)
- Language: CMake
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CMakeLists skeleton
### Directory tree:
```
.
├── benchmarks
│ └── squareRoot.bench.cpp
├── build
├── CMakeLists.txt
├── src
│ └── squareRoot.hpp
├── tests
│ └── squareRoot.t.cpp
├── .gitmodules
└── vendor
```
### Build
#### Install libraries
```
git submodule init
git submodule update
```
#### Build project
```
cd build;
cmake ../ -DWITH_GTEST=ON ;
make -j8;
make test
```