ladybird/Userland/Libraries/LibSoftGPU/CMakeLists.txt
Stephan Unverwerth 3b2ded1d44 LibGPU+LibSoftGPU: Move size and pixel format information to GPU::Image
Size and format information are the same for every implementation and do
not need to be virtual. This removes the need to reimplement them for
each driver.
2022-12-26 09:39:20 +01:00

16 lines
368 B
CMake

set(SOURCES
Clipper.cpp
Device.cpp
Image.cpp
PixelConverter.cpp
ShaderCompiler.cpp
ShaderProcessor.cpp
Sampler.cpp
Shader.cpp
)
add_compile_options(-Wno-psabi)
serenity_lib(LibSoftGPU softgpu)
target_link_libraries(LibSoftGPU PRIVATE LibCore LibGfx)
target_sources(LibSoftGPU PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/../LibGPU/Image.cpp")