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