aboutsummaryrefslogtreecommitdiff
path: root/demos/platform/graphics/CMakeLists.txt
blob: ff5f64a58fb443638255ba94af134311cc78ca9d (plain)
1
2
3
4
5
6
7
8
9
add_library(CruDemoPlatformGraphicsBase INTERFACE)
target_link_libraries(CruDemoPlatformGraphicsBase INTERFACE CruPlatformGraphicsBootstrap)
target_sources(CruDemoPlatformGraphicsBase INTERFACE Base.cpp)

add_executable(CruDemoPlatformGraphicsDrawCircle DrawCircle.cpp)
target_link_libraries(CruDemoPlatformGraphicsDrawCircle PRIVATE CruDemoPlatformGraphicsBase)

add_executable(CruDemoPlatformGraphicsSvgPath SvgPath.cpp)
target_link_libraries(CruDemoPlatformGraphicsSvgPath PRIVATE CruDemoPlatformGraphicsBase)