1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:57:44 +00:00

Lagom: Simplify the CMakeLists.txt a bit.

Now that everything in AK is buildable, we can just build all of it. :^)
This commit is contained in:
Andreas Kling 2019-07-25 14:33:20 +02:00
parent 1bd3fca585
commit 03b9f6b7f8

View file

@ -6,19 +6,10 @@ set(CMAKE_CXX_FLAGS "-O2 -Wall -Wextra -Wconsumed -Werror -std=c++17")
project (Lagom)
file(GLOB SOURCES "../Libraries/LibCore/*.cpp")
file(GLOB AK_SOURCES "../AK/*.cpp")
file(GLOB LIBCORE_SOURCES "../Libraries/LibCore/*.cpp")
set(SOURCES ${SOURCES}
../AK/StringImpl.cpp
../AK/String.cpp
../AK/JsonArray.cpp
../AK/JsonValue.cpp
../AK/JsonObject.cpp
../AK/JsonParser.cpp
../AK/StringBuilder.cpp
../AK/StringView.cpp
../AK/LogStream.cpp
)
set(SOURCES ${AK_SOURCES} ${LIBCORE_SOURCES})
include_directories (../)
include_directories (../Libraries/)