Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/eskry/cmakeconanprojecttemplate

CMake with conan template project
https://github.com/eskry/cmakeconanprojecttemplate

cmake conan cpp template

Last synced: 4 days ago
JSON representation

CMake with conan template project

Awesome Lists containing this project

README

        

# CMake with Conan template

## How build the template

There are 2 approaches in the project.
1. Build with Conan and Cmake using default commands:
```bash
conan install ../conanfile.txt --build=missing
cmake '-G Unix Makefiles' ..
cmake --build . --config Release
```
1. Build with python script `make.py`:
```bash
python3 ./make.py
```