1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 18:10:56 +09:00
ladybird/Userland/Libraries/LibGPU/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

9 lines
169 B
CMake

set(SOURCES
Driver.cpp
Image.cpp
)
serenity_lib(LibGPU gpu)
target_link_libraries(LibGPU PRIVATE LibCore ${CMAKE_DL_LIBS})
add_dependencies(LibGPU LibSoftGPU)