From 3a7aa82b0d6a7597ddb355160350774af2ad059f Mon Sep 17 00:00:00 2001 From: Mm2PL Date: Mon, 30 Jan 2023 17:21:10 +0100 Subject: [PATCH] Try to add include dirs --- lib/lua/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/lua/CMakeLists.txt b/lib/lua/CMakeLists.txt index 0937645a8..241887c08 100644 --- a/lib/lua/CMakeLists.txt +++ b/lib/lua/CMakeLists.txt @@ -51,5 +51,8 @@ set(LUA_SRC ) add_library(lua STATIC ${LUA_SRC}) -#target_link_libraries(lua ${LIBS}) +target_include_directories(lua + PUBLIC + ${LUA_INCLUDE_DIRS} +) set_source_files_properties(${LUA_SRC} PROPERTIES LANGUAGE CXX)