ladybird/Userland/Libraries/LibGL/CMakeLists.txt
Stephan Unverwerth 67b2f8d68d LibGLSL: Add LibGLSL
This adds a new library, LibGLSL for parsing and compiling GLSL programs
to LibGPU IR. Currently the compiler consists only of stubs.
2022-12-17 22:39:09 -07:00

23 lines
429 B
CMake

set(SOURCES
Buffer/Buffer.cpp
Buffer.cpp
ClipPlane.cpp
ContextParameter.cpp
GLAPI.cpp
GLContext.cpp
Image.cpp
Lighting.cpp
List.cpp
Matrix.cpp
NameAllocator.cpp
Shader.cpp
Shaders/Program.cpp
Shaders/Shader.cpp
Stencil.cpp
Tex/Texture2D.cpp
Texture.cpp
Vertex.cpp
)
serenity_lib(LibGL gl)
target_link_libraries(LibGL PRIVATE LibCore LibGfx LibGLSL LibGPU)