mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 03:58:12 +00:00
12 lines
262 B
CMake
12 lines
262 B
CMake
include(accelerated_graphics)
|
|
|
|
if (HAS_ACCELERATED_GRAPHICS)
|
|
set(SOURCES
|
|
Canvas.cpp
|
|
Context.cpp
|
|
Painter.cpp
|
|
)
|
|
|
|
serenity_lib(LibAccelGfx accelgfx)
|
|
target_link_libraries(LibAccelGfx PRIVATE LibGfx ${ACCEL_GFX_LIBS})
|
|
endif()
|