summaryrefslogtreecommitdiff
path: root/Meta
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-11-19 11:14:26 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-11-19 11:14:26 +0100
commit0ddde627b1afd1cc96d3b99813a7b4fe92a55e54 (patch)
tree03223349a5d436d0553032baa783ecdbcb215406 /Meta
parenta12292bd03cf2da631fd118d4149043826bc0589 (diff)
downloadserenity-0ddde627b1afd1cc96d3b99813a7b4fe92a55e54.zip
Lagom: Fix build
Diffstat (limited to 'Meta')
-rw-r--r--Meta/Lagom/CMakeLists.txt10
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)