magpie/qml/CMakeLists.txt

16 lines
253 B
CMake
Raw Normal View History

2023-12-03 14:39:48 +00:00
qt_add_qml_module(magpieQml
2023-12-17 00:06:04 +00:00
URI qml
2023-11-22 23:13:33 +00:00
VERSION 1.0
STATIC
RESOURCE_PREFIX /
NO_PLUGIN
QML_FILES
main.qml
2023-11-24 23:48:01 +00:00
ServerPick.qml
Welcome.qml
2023-11-22 23:13:33 +00:00
)
2023-12-03 14:39:48 +00:00
target_link_libraries(magpie PRIVATE magpieQml)
2023-12-17 00:06:04 +00:00
add_subdirectory(Forms)