ladybird/Userland/Libraries/LibGL/CMakeLists.txt
Stephan Unverwerth 4c944eaa41 LibGL: Remove sampling code from Sampler2D
Texture sampling now happens entirely in SoftGPU thus this class will
now only be used to hold the sampler configuration.
2021-12-24 05:10:28 -08:00

22 lines
412 B
CMake

set(SOURCES
GLBlend.cpp
GLColor.cpp
GLContext.cpp
GLDraw.cpp
GLFog.cpp
GLLights.cpp
GLLists.cpp
GLMat.cpp
GLStencil.cpp
GLTexture.cpp
GLUtils.cpp
GLVert.cpp
GLVertexArrays.cpp
SoftwareGLContext.cpp
Tex/NameAllocator.cpp
Tex/Texture2D.cpp
Tex/TextureUnit.cpp
)
serenity_lib(LibGL gl)
target_link_libraries(LibGL LibM LibCore LibGfx LibSoftGPU)