mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-22 17:24:48 -05:00
Lagom: Fix build
This commit is contained in:
parent
a12292bd03
commit
0ddde627b1
Notes:
sideshowbarker
2024-07-19 11:09:00 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/0ddde627b1a
2 changed files with 6 additions and 6 deletions
|
@ -1,10 +1,10 @@
|
|||
#include <LibCore/CGzip.h>
|
||||
#include <LibCore/CHttpJob.h>
|
||||
#include <LibCore/CHttpResponse.h>
|
||||
#include <LibCore/CTCPSocket.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <CGzip.h>
|
||||
|
||||
#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")
|
||||
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)
|
||||
|
|
Loading…
Reference in a new issue