1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:48:12 +00:00
serenity/Userland/Libraries/LibGL/CMakeLists.txt
Jesse Buhagiar 21dff6d40b LibGL: Add Texture Name Allocation
Texture names can now be allocated via
`glGenTextures` and deallocated via `glDeleteTextures`.
2021-05-26 16:36:53 +04:30

19 lines
348 B
CMake

set(SOURCES
Tex/NameAllocator.cpp
Clipper.cpp
GLBlend.cpp
GLColor.cpp
GLContext.cpp
GLLights.cpp
GLLists.cpp
GLMat.cpp
GLTexture.cpp
GLUtils.cpp
GLVert.cpp
SoftwareGLContext.cpp
SoftwareRasterizer.cpp
DepthBuffer.cpp
)
serenity_lib(LibGL gl)
target_link_libraries(LibGL LibM LibCore LibGfx)