mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 20:29:18 +00:00
This adds a new library, LibGLSL for parsing and compiling GLSL programs to LibGPU IR. Currently the compiler consists only of stubs.
23 lines
429 B
CMake
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)
|