f9e7e85308
Eliminates top-level inclusion of the headers with include_directories() and instead utilizes it on a by-target basis using target_include_directories().
19 lines
637 B
CMake
19 lines
637 B
CMake
# For libraries that already come with a CMakeLists file,
|
|
# simply add the directory to that file as a subdirectory
|
|
# to have CMake automatically recognize them.
|
|
|
|
if (NOT DYNARMIC_NO_BUNDLED_FMT)
|
|
# fmtlib formatting library
|
|
add_subdirectory(fmt)
|
|
endif()
|
|
|
|
if (NOT TARGET xbyak)
|
|
if (ARCHITECTURE_x86 OR ARCHITECTURE_x86_64)
|
|
add_library(xbyak INTERFACE)
|
|
target_include_directories(xbyak INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/xbyak/xbyak)
|
|
endif()
|
|
endif()
|
|
|
|
add_library(catch INTERFACE)
|
|
target_include_directories(catch INTERFACE
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/catch>)
|