mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 05:14:59 +00:00
13 lines
226 B
CMake
13 lines
226 B
CMake
set(SOURCES
|
|
Driver.cpp
|
|
Image.cpp
|
|
)
|
|
|
|
serenity_lib(LibGPU gpu)
|
|
target_link_libraries(LibGPU PRIVATE ${CMAKE_DL_LIBS})
|
|
|
|
add_dependencies(LibGPU LibSoftGPU)
|
|
|
|
if (SERENITYOS)
|
|
add_dependencies(LibGPU LibVirtGPU)
|
|
endif()
|