1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 07:34:58 +00:00
serenity/Userland/Libraries/LibGL/CMakeLists.txt
Stephan Unverwerth da57563c1c LibGL: Implement glShadeModel()
This turns off interpolation of vertex colors when GL_FLAT is selected.
2021-05-16 15:53:58 +02:00

17 lines
304 B
CMake

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