qskinny/playground/shapes/CMakeLists.txt

23 lines
367 B
CMake
Raw Normal View History

2023-03-29 15:49:17 +00:00
list(APPEND HEADERS
ShapeItem.h
GeometricShape.h
Window.h
Stroke.h)
2023-03-29 15:49:17 +00:00
list(APPEND SOURCES
Stroke.cpp
ShapeItem.cpp
GeometricShape.cpp
Window.cpp
main.cpp)
if( BUILD_QML_EXPORT )
list(APPEND RESOURCES shapes.qrc)
endif()
2023-03-29 15:49:17 +00:00
qsk_example(shapes)
if( BUILD_QML_EXPORT )
target_compile_definitions(shapes PRIVATE NO_QML)
endif()