summaryrefslogtreecommitdiff
path: root/xmake/templates/c++/qt.widgetapp/project/xmake.lua
blob: 9fdf5206d0eb2ca5ae9587f75a972b873d846364 (plain)
1
2
3
4
5
6
7
8
9
10
11
add_rules("mode.debug", "mode.release")

target("${TARGETNAME}")
    add_rules("qt.widgetapp")
    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")

${FAQ}