mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:37:36 +00:00
Lagom: Port LibSyntax
LibSyntax was already building for lagom without any extra changes so let's just enable it :^)
This commit is contained in:
parent
96459e4b3a
commit
b9dbe248aa
1 changed files with 7 additions and 1 deletions
|
@ -344,9 +344,9 @@ if (BUILD_LAGOM)
|
|||
# GUI-GML
|
||||
file(GLOB LIBGUI_GML_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibGUI/GML/*.cpp")
|
||||
list(REMOVE_ITEM LIBGUI_GML_SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/../../Userland/Libraries/LibGUI/GML/AutocompleteProvider.cpp")
|
||||
list(REMOVE_ITEM LIBGUI_GML_SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/../../Userland/Libraries/LibGUI/GML/SyntaxHighlighter.cpp")
|
||||
lagom_lib(GML gml
|
||||
SOURCES ${LIBGUI_GML_SOURCES}
|
||||
LIBS LagomSyntax
|
||||
)
|
||||
|
||||
# HTTP
|
||||
|
@ -423,6 +423,12 @@ if (BUILD_LAGOM)
|
|||
LIBS m LagomGfx
|
||||
)
|
||||
|
||||
# Syntax
|
||||
file(GLOB LIBSYNTAX_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibSyntax/*.cpp")
|
||||
lagom_lib(Syntax syntax
|
||||
SOURCES ${LIBSYNTAX_SOURCES}
|
||||
)
|
||||
|
||||
# SQL
|
||||
file(GLOB_RECURSE LIBSQL_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibSQL/*.cpp")
|
||||
list(REMOVE_ITEM LIBSQL_SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/../../Userland/Libraries/LibSQL/AST/SyntaxHighlighter.cpp")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue