mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 05:34:58 +00:00
14 lines
301 B
CMake
14 lines
301 B
CMake
include(accelerated_graphics)
|
|
|
|
if (HAS_ACCELERATED_GRAPHICS)
|
|
set(SOURCES
|
|
GL.cpp
|
|
GlyphAtlas.cpp
|
|
Context.cpp
|
|
Painter.cpp
|
|
Program.cpp
|
|
)
|
|
|
|
serenity_lib(LibAccelGfx accelgfx)
|
|
target_link_libraries(LibAccelGfx PRIVATE LibGfx ${ACCEL_GFX_LIBS})
|
|
endif()
|