summaryrefslogtreecommitdiff
path: root/tests/projects/rust/rust_call_cxx_library/xmake.lua
blob: e150aca4a0da07c79835933b7bcb4a556e0c83a1 (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.cc")

target("test")
    set_kind("binary")
    add_deps("foo")
    add_files("src/main.rs")