ladybird/Userland/Libraries/LibGLSL/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

7 lines
120 B
CMake

set(SOURCES
Compiler.cpp
Linker.cpp
)
serenity_lib(LibGLSL glsl)
target_link_libraries(LibGLSL PRIVATE LibGPU)