blob: 184a33d510f031b8ec9cdfc80b0a8c939e52265f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
add_rules("mode.debug", "mode.release")
target("test")
set_kind("static")
add_files("src/interface.cpp")
target("demo")
set_kind("binary")
add_deps("test")
add_files("src/main.cpp")
|