From 7c47f23ee92afa07c748700f1de22fd8b8ccf967 Mon Sep 17 00:00:00 2001 From: sanine Date: Sat, 10 Dec 2022 19:12:31 -0600 Subject: refactor: remove node.* and util.* and move 3rdparty libs into separate directory --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index f493c77..de4fd2c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ project(kalmia) option(KALMIA_BUILD_TESTS "Build the tests" ON) add_library(kalmia STATIC) -target_include_directories(kalmia PUBLIC include) +target_include_directories(kalmia PUBLIC include 3rdparty 3rdparty/ezxml) if (UNIX) set_target_properties( kalmia PROPERTIES @@ -24,3 +24,4 @@ if (KALMIA_BUILD_TESTS) endif() add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/src) +add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/3rdparty/ezxml) -- cgit v1.2.1