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

target("${TARGETNAME}")
    set_kind("static")
    add_files("src/interface.cpp")

target("${TARGETNAME}_demo")
    set_kind("binary")
    add_deps("${TARGETNAME}")
    add_files("src/main.cpp")

${FAQ}