summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/phony2/xmake.lua
blob: 3247ab41cd69ab525d3d3cfb24e68cb320a98583 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
add_rules("mode.release", "mode.debug")
set_languages("c++20")

target("test")
    set_kind("static")
    add_includedirs("include")
    add_files("src/*.mpp", {public = true})

target("test-phony")
    set_kind("phony")
    add_deps("test")

target("class")
    set_kind("binary")
    add_files("src/*.cpp")
    add_deps("test-phony")