Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow using backwards-cpp through CPM (Cmake Package Manager)/FetchContent without using the ${BACKWARD_ENABLE} target CPM (https://github.com/cpm-cmake/CPM.cmake) can now be used like so: In a main/top-level CMakeLists.txt: ```cmake include(cmake/CPM.cmake) CPMAddPackage("gh:#1.7") ``` And in a project (or the same CMakeLists.txt): ```cmake cmake_minimum_required(VERSION 3.9) project (example VERSION 0.1) add_executable(example main.cpp ) target_link_libraries(example Backward::Backward ) ```
- Loading branch information