From 4119af0ffe969558b4523e2eaa914e48c87060c4 Mon Sep 17 00:00:00 2001 From: Simon Lees Date: Tue, 5 Mar 2024 12:03:32 +1030 Subject: [PATCH] cmake: use full path rather then relative. Co-authored-by: Brenden Matthews --- lua/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/CMakeLists.txt b/lua/CMakeLists.txt index 8c49fe1f..c8fbfc33 100644 --- a/lua/CMakeLists.txt +++ b/lua/CMakeLists.txt @@ -44,7 +44,7 @@ if(BUILD_X11) endif(BUILD_LUA_CAIRO) if(BUILD_LUA_IMLIB2) - include_directories(${luaimlib2_includes} ${CMAKE_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR} ../src) + include_directories(${luaimlib2_includes} ${CMAKE_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src) if(IMLIB2_VERSION VERSION_GREATER_EQUAL "1.10.0") wrap_tolua(luaimlib2_src imlib2.pkg)