aboutsummaryrefslogtreecommitdiff
path: root/demos/platform/graphics/CMakeLists.txt
blob: 07758ee60816a5be377d62d03d93c3206c54222d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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(CruDemoPlatformGraphicsDrawText DrawText.cpp)
target_link_libraries(CruDemoPlatformGraphicsDrawText PRIVATE CruDemoPlatformGraphicsBase)

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