Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/eskry/cmakeconanprojecttemplate
- Owner: eSkry
- Created: 2023-01-26T12:27:56.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-02T14:48:49.000Z (almost 2 years ago)
- Last Synced: 2024-10-31T20:07:22.550Z (about 2 months ago)
- Topics: cmake, conan, cpp, template
- Language: Python
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```