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

target("foo")
    set_kind("static")
    add_files("src/foo.cpp")

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

${FAQ}