1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:07:45 +00:00

Meta: Remove -ldl linkage from LagomUnicode

This was needed for dlopen() on some systems, but is no longer needed as
of commit 1116a29c19.
This commit is contained in:
Timothy Flynn 2022-01-07 08:00:51 -05:00 committed by Linus Groh
parent b1a15b02f1
commit 363eafbc44

View file

@ -402,7 +402,7 @@ if (BUILD_LAGOM)
SOURCES ${LIBSOFTGPU_SOURCES}
LIBS m LagomGfx
)
# 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")
@ -437,7 +437,6 @@ if (BUILD_LAGOM)
SOURCES ${LIBUNICODE_SOURCES} ${UNICODE_DATA_SOURCES}
)
target_compile_definitions(LagomUnicode PRIVATE ENABLE_UNICODE_DATA=$<BOOL:${ENABLE_UNICODE_DATABASE_DOWNLOAD}>)
target_link_libraries(LagomUnicode -ldl)
# WASM
file(GLOB LIBWASM_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibWasm/*/*.cpp")