βοΈ CMake Integration¶
CrashCatch supports modern CMake out of the box, with both local usage and installable package support.
𧩠Using as a Subdirectory¶
If you cloned or copied CrashCatch into your project, add this to your CMakeLists.txt
:
add_subdirectory(CrashCatch)
add_executable(MyApp main.cpp)
target_link_libraries(MyApp PRIVATE CrashCatch::CrashCatch)
This uses the header-only target defined inside CrashCatchβs CMakeLists.txt
.
π¦ Installing to Your System¶
To install CrashCatch to your machine or a custom prefix:
This will generate:
install/
βββ include/CrashCatch.hpp
βββ lib/cmake/CrashCatch/
βββ CrashCatchConfig.cmake
βββ CrashCatchTargets.cmake
π Using find_package()¶
In another project, you can now use CrashCatch as a package:
find_package(CrashCatch REQUIRED)
add_executable(MyApp main.cpp)
target_link_libraries(MyApp PRIVATE CrashCatch::CrashCatch)
CMake will locate the headers and preconfigured target with no additional setup.
π§ͺ Example¶
See examples/
folder for fully working sample projects that compile with CMake.