1
0
Fork 0
cmake_helpers/external/expected/CMakeLists.txt
Vitaly Zaitsev 7b5d3e01c0 Find and use packaged version of expected header-only library.
Enabled by default when `DESKTOP_APP_USE_PACKAGED` is used. Can be
overriden by `-DDESKTOP_APP_USE_PACKAGED_EXPECTED:BOOL=OFF`.

Signed-off-by: Vitaly Zaitsev <vitaly@easycoding.org>
2020-02-05 00:41:19 +04:00

18 lines
646 B
CMake

# This file is part of Desktop App Toolkit,
# a set of libraries for developing nice desktop applications.
#
# For license and copyright information please follow this link:
# https://github.com/desktop-app/legal/blob/master/LEGAL
add_library(external_expected INTERFACE IMPORTED GLOBAL)
add_library(desktop-app::external_expected ALIAS external_expected)
if (DESKTOP_APP_USE_PACKAGED_EXPECTED)
find_package(tl-expected CONFIG REQUIRED)
target_link_libraries(external_expected INTERFACE tl::expected)
else()
target_include_directories(external_expected SYSTEM
INTERFACE
${third_party_loc}/expected/include
)
endif()