Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 900 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 900 Bytes

C++ Project Template

Build License

Template project for C++ with CMake and Conan 2.0 support.

Supported tools

  • CMake (3.19+)
  • Conan (2.0.0+)

Conan workflow

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