summaryrefslogtreecommitdiff
path: root/tests/projects/qt/with_ts/xmake.lua
blob: d12ed56066f3bb7fef5b14c7482fbd780ae4c047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
add_rules("mode.debug", "mode.release")

target("demo")
    add_rules("qt.widgetapp")
    add_headerfiles("src/*.h")
    add_files("src/*.cpp")
    add_files("src/mainwindow.ui")
    add_files("src/mainwindow.h")
    add_files("src/demo_zh_CN.ts")
    add_files("src/demo_zh_TW.ts", {
        prefixdir = "translations"
    })