summaryrefslogtreecommitdiff
path: root/xmake/templates/c++/qt.widgetapp_static/project/xmake.lua
blob: 80517375f79e5a040b5b0c145ecec0fa7d3fcff9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
add_rules("mode.debug", "mode.release")

includes("qt_add_static_plugins.lua")

target("${TARGETNAME}")
    add_rules("qt.widgetapp_static")
    add_headerfiles("src/*.h")
    add_files("src/*.cpp")
    add_files("src/mainwindow.ui")

    -- add files with Q_OBJECT meta (only for qt.moc)
    add_files("src/mainwindow.h")

    -- add plugin: QSvgPlugin (optional)
    qt_add_static_plugins("QSvgPlugin", {linkdirs = "plugins/imageformats", links = {"qsvg", "Qt5Svg"}})

${FAQ}