Lagom: Add LibGL to the libraries

This commit is contained in:
Hendiadyoin1 2021-11-28 16:08:07 +01:00 committed by Ali Mohammad Pur
parent 849089c406
commit 3a4dd5ff87
Notes: sideshowbarker 2024-07-17 23:23:26 +09:00

View file

@ -311,6 +311,13 @@ if (BUILD_LAGOM)
LIBS m LagomCompress LagomTextCodec LagomIPC
)
# GL
file(GLOB LIBGL_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibGL/*.cpp")
file(GLOB LIBGL_TEX_SCOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibGL/Tex/*.cpp")
lagom_lib(GL gl
SOURCES ${LIBGL_SOURCES} ${LIBGL_TEX_SCOURCES}
LIBS m LagomGfx)
# 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/GMLAutocompleteProvider.cpp")