Unverified Commit 2a13d5d9 authored by Tommaso Tocci's avatar Tommaso Tocci
Browse files

move external library headers folder to topdir

parent 0f4eabd8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -139,14 +139,14 @@ add_library(spdlog INTERFACE)
# we cannot use target_include_directories with CMake < 3.11
set_target_properties(spdlog
    PROPERTIES
    INTERFACE_INCLUDE_DIRECTORIES "${CMAKE_SOURCE_DIR}/include/extern"
    INTERFACE_INCLUDE_DIRECTORIES "${CMAKE_SOURCE_DIR}/external"
)

add_library(fmt INTERFACE)
# we cannot use target_include_directories with CMake < 3.11
set_target_properties(fmt
    PROPERTIES
    INTERFACE_INCLUDE_DIRECTORIES "${CMAKE_SOURCE_DIR}/include/extern/spdlog"
    INTERFACE_INCLUDE_DIRECTORIES "${CMAKE_SOURCE_DIR}/external/spdlog"
)

set(INCLUDE_DIR "${CMAKE_SOURCE_DIR}/include")
Loading