Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 837 Bytes

README.md

File metadata and controls

52 lines (38 loc) · 837 Bytes

CppTemplate

⚠️ Requirement

💻 Usage

🚀 Clone repository

git clone https://github.com/martin-olivier/CppTemplate

🔧 Setup repository

python3 setup.py

🔨 Build

Using Unix Makefile:

# to build the program
make
./binary

# to build the tests
make tests
./unit_tests

Using CMake:

# to build the program
cmake . -B build
cmake --build build
./binary

# to build the tests
cmake . -B build_tests -DUNIT_TESTS=ON
cmake --build build_tests
./unit_tests

👤 Authors