aboutsummaryrefslogtreecommitdiff
path: root/demos/Graphics/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'demos/Graphics/CMakeLists.txt')
-rw-r--r--demos/Graphics/CMakeLists.txt8
1 files changed, 8 insertions, 0 deletions
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)