From 7952710b65994198cc816bbe77f91787677db4fe Mon Sep 17 00:00:00 2001 From: karutoh Date: Wed, 14 Feb 2024 18:43:37 -0800 Subject: [PATCH] Fixed include error? --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7bd467c..0606bdb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,7 @@ add_executable(Compiler src/main.cpp ) -target_include_directories(Compiler PRIVATE "include") +target_include_directories(Compiler PRIVATE "${PROJECT_SOURCE_DIR}/include") if (IS_OS_LINUX) add_compile_definitions(LWE_WS_XCB)