repertory/cmake/libraries/backward_cpp.cmake
Scott E. Graves 9ce4c5a494
Some checks are pending
BlockStorage/repertory/pipeline/head Build queued...
updated build system
2024-08-04 10:30:49 -05:00

12 lines
245 B
CMake

if(PROJECT_ENABLE_BACKWARD_CPP AND PROJECT_BUILD)
if(PROJECT_IS_MINGW)
add_definitions(-DPROJECT_ENABLE_BACKWARD_CPP)
link_libraries(msvcr90)
else()
add_definitions(-DBACKWARD_HAS_BFD)
link_libraries(bfd)
endif()
endif()