From 27f153af927c056af5cec70db5f011752e29b156 Mon Sep 17 00:00:00 2001 From: Yuqian Yang Date: Fri, 12 Sep 2025 00:42:36 +0800 Subject: Organize bootstrap and graphics demos. --- demos/Graphics/CMakeLists.txt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 demos/Graphics/CMakeLists.txt (limited to 'demos/Graphics/CMakeLists.txt') diff --git a/demos/Graphics/CMakeLists.txt b/demos/Graphics/CMakeLists.txt new file mode 100644 index 00000000..64982a19 --- /dev/null +++ b/demos/Graphics/CMakeLists.txt @@ -0,0 +1,8 @@ +add_library(CruDemoGraphicsBase INTERFACE) +target_link_libraries(CruDemoGraphicsBase INTERFACE CruPlatformGraphicsBootstrap) + +add_executable(CruDemoGraphicsDrawCircle DrawCircle.cpp) +target_link_libraries(CruDemoGraphicsDrawCircle PRIVATE CruDemoGraphicsBase) + +add_executable(CruDemoGraphicsSvgPath SvgPath.cpp) +target_link_libraries(CruDemoGraphicsSvgPath PRIVATE CruDemoGraphicsBase) -- cgit v1.2.3