Skip to content

daniel1302/CMakeLists

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

It is a skeleton for an application using CMake. A sketch includes integration with google benchmarks and google tests.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors