Skip to content
Snippets Groups Projects
Commit 24df8d9a authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Forgot a file

parent cc6d6e2d
No related branches found
No related tags found
No related merge requests found
# -*- cmake -*-
include(Linking)
include(Prebuilt)
option(USE_BINARY_ABSL "Use binary package for abseil" ON)
if(USE_BINARY_ABSL)
if (USESYSTEMLIBS)
find_package(absl REQUIRED)
else ()
use_prebuilt_binary(abseil-cpp)
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
find_package(absl REQUIRED PATHS "${AUTOBUILD_INSTALL_DIR}/absl/debug" NO_DEFAULT_PATH)
else()
find_package(absl REQUIRED PATHS "${AUTOBUILD_INSTALL_DIR}/absl/release" NO_DEFAULT_PATH)
endif()
endif ()
endif()
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment