mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 11:37: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:
parent
1bd3fca585
commit
03b9f6b7f8
1 changed files with 3 additions and 12 deletions
|
@ -6,19 +6,10 @@ set(CMAKE_CXX_FLAGS "-O2 -Wall -Wextra -Wconsumed -Werror -std=c++17")
|
||||||
|
|
||||||
project (Lagom)
|
project (Lagom)
|
||||||
|
|
||||||
file(GLOB SOURCES "../Libraries/LibCore/*.cpp")
|
file(GLOB AK_SOURCES "../AK/*.cpp")
|
||||||
|
file(GLOB LIBCORE_SOURCES "../Libraries/LibCore/*.cpp")
|
||||||
|
|
||||||
set(SOURCES ${SOURCES}
|
set(SOURCES ${AK_SOURCES} ${LIBCORE_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
|
|
||||||
)
|
|
||||||
|
|
||||||
include_directories (../)
|
include_directories (../)
|
||||||
include_directories (../Libraries/)
|
include_directories (../Libraries/)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue