aboutsummaryrefslogtreecommitdiff
path: root/demos/Graphics/CMakeLists.txt
blob: 64982a19ea2532a210b28f1714c4aefc30185f78 (plain)
1
2
3
4
5
6
7
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)