1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 02:38:13 +00:00
serenity/Userland/Libraries/LibSoftGPU/CMakeLists.txt
Stephan Unverwerth 93ab2db80f LibGL+LibSoftGPU: Add GPU side shader infrastructure
This adds a shader class to LibSoftGPU and makes use of it when linking
GLSL program in LibGL. Also adds actual rendering code to the shader
tests.
2022-12-17 22:39:09 -07:00

12 lines
236 B
CMake

set(SOURCES
Clipper.cpp
Device.cpp
Image.cpp
PixelConverter.cpp
Sampler.cpp
Shader.cpp
)
add_compile_options(-Wno-psabi)
serenity_lib(LibSoftGPU softgpu)
target_link_libraries(LibSoftGPU PRIVATE LibCore LibGfx)