mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 18:55:09 +00:00

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).
13 lines
222 B
CMake
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)
|