Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 640 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 640 Bytes

conan-template-setup

Template c++ project with conan setup

How to setup and run

  1. Install conan 2.0
  2. [Optional] Create conan profile if you haven't yet: conan profile detect --force. This will create new default profile for conan in your system.
  3. Install CMake of version not less than the one that is specified in CMakeLists.txt
  4. cd to the root folder of the project
  5. conan install . --output-folder=build --build=missing
  6. cd build
  7. cmake .. -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release
  8. cmake --build .
  9. ./conan_template

Now make a tea and eat some cookies. You're awesome.