Skip to content

automainint/cxx-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

80 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cxx-project

linux codecov

C++ project template.

How to build

CMake is required to build the project.

With provided build script

  • Execute build.py.
python3 build.py

Done!

With CMake

cmake -D CMAKE_BUILD_TYPE=Release -B build -S .
cmake --build build --config Release

By hand

  • Use tools/build-deps.py to build the dependencies.
cd tools
python3 build-deps.py
cd ..

Add source to the project and build manually. Required headers will be in include folder, libraries will be in lib folder.