ladybird/Userland/Libraries/LibGL/CMakeLists.txt
Jesse Buhagiar 52e5d3c961 LibGL: Implement basic texture units
These are merely a way to hold the different texture target bind
points that a texture can be bound to.
2021-05-31 14:59:47 +01:00

22 lines
394 B
CMake

set(SOURCES
Tex/NameAllocator.cpp
Tex/Texture2D.cpp
Tex/TextureUnit.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)