Template project for C++ with CMake and Conan 2.0 support.
- CMake (3.19+)
- Conan (2.0.0+)
The project workflow for Conan 2.0 is listed below. See the conan/profiles
directory for a set of pre-generated profiles.
# Create a default profile
conan profile detect
# Install the dependencies
conan install . --profile <path/to/profile> --build missing
# Build the package
conan build . --profile <path/to/profile> --build missing
# Create the package
conan create . --profile <path/to/profile> --build missing