1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 18:55:09 +00:00
serenity/Userland/Demos/VirGLDemo/CMakeLists.txt
Sahan Fernando fd5eaf6494 Demos: Create demo for VirGL gpu device
This is a simple demo for VirGL, that does the bare minimum required to
create and render a spinning cube (with one color per face).
2022-03-09 14:58:48 +03:30

13 lines
222 B
CMake

serenity_component(
VirGLDemo
TARGETS VirGLDemo
)
set(SOURCES
CommandBufferBuilder.cpp
VirGLDemo.cpp
Widget.cpp
)
serenity_app(VirGLDemo ICON app-cube)
target_link_libraries(VirGLDemo LibMain LibGUI)