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

target("demo")
    add_rules("qt.qmlplugin")
    add_headerfiles("src/*.h")
    add_files("src/*.cpp")
    -- add files with Q_OBJECT meta (only for qt.moc)
    add_files("src/*.h")

    set_values("qt.qmlplugin.import_name", "My.Plugin")