diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-11-19 11:14:26 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-11-19 11:14:26 +0100 |
commit | 0ddde627b1afd1cc96d3b99813a7b4fe92a55e54 (patch) | |
tree | 03223349a5d436d0553032baa783ecdbcb215406 /Meta | |
parent | a12292bd03cf2da631fd118d4149043826bc0589 (diff) | |
download | serenity-0ddde627b1afd1cc96d3b99813a7b4fe92a55e54.zip |
Lagom: Fix build
Diffstat (limited to 'Meta')
-rw-r--r-- | Meta/Lagom/CMakeLists.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Meta/Lagom/CMakeLists.txt b/Meta/Lagom/CMakeLists.txt index 73582aec33..0dcf181634 100644 --- a/Meta/Lagom/CMakeLists.txt +++ b/Meta/Lagom/CMakeLists.txt @@ -9,14 +9,14 @@ elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-expansion-to-defined") endif() -file(GLOB AK_SOURCES "../AK/*.cpp") -file(GLOB LIBCORE_SOURCES "../Libraries/LibCore/*.cpp") -file(GLOB LIBIPC_SOURCES "../Libraries/LibIPC/*.cpp") +file(GLOB AK_SOURCES "../../AK/*.cpp") +file(GLOB LIBCORE_SOURCES "../../Libraries/LibCore/*.cpp") +file(GLOB LIBIPC_SOURCES "../../Libraries/LibIPC/*.cpp") set(SOURCES ${AK_SOURCES} ${LIBCORE_SOURCES} ${LIBIPC_SOURCES}) -include_directories (../) -include_directories (../Libraries/) +include_directories (../../) +include_directories (../../Libraries/) add_library(lagom ${SOURCES}) add_executable(TestApp TestApp.cpp) |