|
@@ -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)
|