Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🧑💻 Improve usability of conan and cmake
Rather than running: ``` conan install .. -s build_type=Debug --build=missing cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake ``` You can now simply run: ``` conan install .. cmake .. ``` So long as this was run during setup: ``` conan profile update settings.build_type=Debug default ``` If the above command was not run to set the default build type to "Debug" call it now in order to set it. This way you will no longer need to use it in the conan command. `--build=missing` will be removed soon as the `gnu-arm-embedded-toolchain` is upgraded to override build settings and always build on its own.
- Loading branch information