1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 01:58:12 +00:00
serenity/Userland/Libraries/LibGL/CMakeLists.txt
Jelle Raaijmakers 365fb36108 LibGL: Split up GLContext implementation into logical units
This allows for faster rebuilds when the implementation changes.
2022-05-05 20:50:14 +02:00

16 lines
293 B
CMake

set(SOURCES
ContextParameter.cpp
GLAPI.cpp
GLContext.cpp
Matrix.cpp
Lighting.cpp
Lists.cpp
Stencil.cpp
Tex/NameAllocator.cpp
Tex/Texture2D.cpp
Textures.cpp
Vertex.cpp
)
serenity_lib(LibGL gl)
target_link_libraries(LibGL LibM LibCore LibGfx LibGPU)