From de97d73a33ee3c1e2fe325b0cff90f079519bb36 Mon Sep 17 00:00:00 2001 From: sanine Date: Tue, 28 Jun 2022 16:23:49 -0500 Subject: fix honeysuckle.h includes --- CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bdd1832..bf0ee15 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,11 @@ find_package(Lua51 REQUIRED) set(SRC_ROOT ${CMAKE_SOURCE_DIR}/src) set(LIB_ROOT ${CMAKE_SOURCE_DIR}/libs) -include_directories(${LUA_INCLUDE_DIR} ${CMAKE_SOURCE_DIR}/src) +include_directories( + ${LUA_INCLUDE_DIR} + ${CMAKE_SOURCE_DIR}/src + ${CMAKE_SOURCE_DIR}/libs/honeysuckle/src +) # link to third-party included libraries link_directories(${LIB_ROOT}/assimp/lib) -- cgit v1.2.1