14 lines
294 B
CMake
14 lines
294 B
CMake
include(FetchContent)
|
|
|
|
set(FETCHCONTENT_QUIET TRUE)
|
|
set(BUILD_SHARED OFF CACHE STRING "" FORCE)
|
|
|
|
FetchContent_Declare(
|
|
libbacktrace
|
|
GIT_REPOSITORY git@github.com:brenozd/libbacktrace.git
|
|
GIT_TAG master
|
|
GIT_SHALLOW TRUE
|
|
OVERRIDE_FIND_PACKAGE)
|
|
|
|
FetchContent_MakeAvailable(libbacktrace)
|