ladybird/Userland/Libraries/LibSoftGPU/CMakeLists.txt
Stephan Unverwerth 91ccf9958f LibSoftGPU: Add Image class
This serves as the storage for all image types. 1D, 2D, 3D, Cube and
image arrays.

Upon construction a full mipmap chain is generated and the image is
immutable afterwards with respect to its layout.
2021-12-24 05:10:28 -08:00

10 lines
167 B
CMake

set(SOURCES
Clipper.cpp
DepthBuffer.cpp
Device.cpp
Image.cpp
)
serenity_lib(LibSoftGPU softgpu)
target_link_libraries(LibSoftGPU LibM LibCore LibGfx)