diff options
Diffstat (limited to 'demos/platform/graphics/CMakeLists.txt')
-rw-r--r-- | demos/platform/graphics/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/demos/platform/graphics/CMakeLists.txt b/demos/platform/graphics/CMakeLists.txt new file mode 100644 index 00000000..e2a96c09 --- /dev/null +++ b/demos/platform/graphics/CMakeLists.txt @@ -0,0 +1,8 @@ +add_library(CruDemoPlatformGraphicsBase INTERFACE) +target_link_libraries(CruDemoPlatformGraphicsBase INTERFACE CruPlatformGraphicsBootstrap) + +add_executable(CruDemoPlatformGraphicsDrawCircle DrawCircle.cpp) +target_link_libraries(CruDemoPlatformGraphicsDrawCircle PRIVATE CruDemoPlatformGraphicsBase) + +add_executable(CruDemoPlatformGraphicsSvgPath SvgPath.cpp) +target_link_libraries(CruDemoPlatformGraphicsSvgPath PRIVATE CruDemoPlatformGraphicsBase) |