14 lines
230 B
CMake
14 lines
230 B
CMake
qt_add_qml_module(magpieQml
|
|
URI "qml"
|
|
VERSION 1.0
|
|
STATIC
|
|
RESOURCE_PREFIX /
|
|
NO_PLUGIN
|
|
QML_FILES
|
|
main.qml
|
|
ServerPick.qml
|
|
Welcome.qml
|
|
)
|
|
|
|
target_link_libraries(magpie PRIVATE magpieQml)
|