mirror of
https://github.com/RGBCube/serenity
synced 2025-07-23 20:57:41 +00:00
Lagom: Fix build
This commit is contained in:
parent
a12292bd03
commit
0ddde627b1
2 changed files with 6 additions and 6 deletions
|
@ -1,10 +1,10 @@
|
||||||
|
#include <LibCore/CGzip.h>
|
||||||
#include <LibCore/CHttpJob.h>
|
#include <LibCore/CHttpJob.h>
|
||||||
#include <LibCore/CHttpResponse.h>
|
#include <LibCore/CHttpResponse.h>
|
||||||
#include <LibCore/CTCPSocket.h>
|
#include <LibCore/CTCPSocket.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#include <CGzip.h>
|
|
||||||
|
|
||||||
#define CHTTPJOB_DEBUG
|
#define CHTTPJOB_DEBUG
|
||||||
|
|
||||||
|
|
|
@ -9,14 +9,14 @@ elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
|
||||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-expansion-to-defined")
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-expansion-to-defined")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
file(GLOB AK_SOURCES "../AK/*.cpp")
|
file(GLOB AK_SOURCES "../../AK/*.cpp")
|
||||||
file(GLOB LIBCORE_SOURCES "../Libraries/LibCore/*.cpp")
|
file(GLOB LIBCORE_SOURCES "../../Libraries/LibCore/*.cpp")
|
||||||
file(GLOB LIBIPC_SOURCES "../Libraries/LibIPC/*.cpp")
|
file(GLOB LIBIPC_SOURCES "../../Libraries/LibIPC/*.cpp")
|
||||||
|
|
||||||
set(SOURCES ${AK_SOURCES} ${LIBCORE_SOURCES} ${LIBIPC_SOURCES})
|
set(SOURCES ${AK_SOURCES} ${LIBCORE_SOURCES} ${LIBIPC_SOURCES})
|
||||||
|
|
||||||
include_directories (../)
|
include_directories (../../)
|
||||||
include_directories (../Libraries/)
|
include_directories (../../Libraries/)
|
||||||
add_library(lagom ${SOURCES})
|
add_library(lagom ${SOURCES})
|
||||||
|
|
||||||
add_executable(TestApp TestApp.cpp)
|
add_executable(TestApp TestApp.cpp)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue