mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:07:45 +00:00
Lagom: Exclude LibSQL/SQLClient.cpp and the sql utility from Lagom
Lagom doesn't seem to like IPC services, and sql needs SQLClient.
This commit is contained in:
parent
a034774e3a
commit
99dc3469e8
1 changed files with 1 additions and 5 deletions
|
@ -83,6 +83,7 @@ file(GLOB SHELL_TESTS CONFIGURE_DEPENDS "../../Userland/Shell/Tests/*.sh")
|
||||||
list(FILTER SHELL_SOURCES EXCLUDE REGEX ".*main.cpp$")
|
list(FILTER SHELL_SOURCES EXCLUDE REGEX ".*main.cpp$")
|
||||||
file(GLOB_RECURSE LIBSQL_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibSQL/*.cpp")
|
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")
|
list(REMOVE_ITEM LIBSQL_SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/../../Userland/Libraries/LibSQL/AST/SyntaxHighlighter.cpp")
|
||||||
|
list(REMOVE_ITEM LIBSQL_SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/../../Userland/Libraries/LibSQL/SQLClient.cpp")
|
||||||
file(GLOB LIBSQL_TEST_SOURCES CONFIGURE_DEPENDS "../../Tests/LibSQL/*.cpp")
|
file(GLOB LIBSQL_TEST_SOURCES CONFIGURE_DEPENDS "../../Tests/LibSQL/*.cpp")
|
||||||
file(GLOB LIBWASM_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibWasm/*/*.cpp")
|
file(GLOB LIBWASM_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibWasm/*/*.cpp")
|
||||||
file(GLOB LIBIMAP_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibIMAP/*.cpp")
|
file(GLOB LIBIMAP_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibIMAP/*.cpp")
|
||||||
|
@ -196,11 +197,6 @@ if (BUILD_LAGOM)
|
||||||
target_link_libraries(gml-format_lagom Lagom)
|
target_link_libraries(gml-format_lagom Lagom)
|
||||||
target_link_libraries(gml-format_lagom stdc++)
|
target_link_libraries(gml-format_lagom stdc++)
|
||||||
|
|
||||||
add_executable(sql_lagom ../../Userland/Utilities/sql.cpp)
|
|
||||||
set_target_properties(sql_lagom PROPERTIES OUTPUT_NAME sql)
|
|
||||||
target_link_libraries(sql_lagom Lagom)
|
|
||||||
target_link_libraries(sql_lagom stdc++)
|
|
||||||
|
|
||||||
add_executable(test-iodevice ../../Tests/LibCore/TestLibCoreIODevice.cpp ${LIBTEST_MAIN})
|
add_executable(test-iodevice ../../Tests/LibCore/TestLibCoreIODevice.cpp ${LIBTEST_MAIN})
|
||||||
set_target_properties(test-iodevice PROPERTIES OUTPUT_NAME test-iodevice)
|
set_target_properties(test-iodevice PROPERTIES OUTPUT_NAME test-iodevice)
|
||||||
target_link_libraries(test-iodevice Lagom)
|
target_link_libraries(test-iodevice Lagom)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue