blob: 89d82852048d15144e622bb2cd7cc104952ae38b (
plain)
1
2
3
4
5
6
7
8
9
|
Import("env")
if "test" in COMMAND_LINE_TARGETS or env.GetOption("clean") :
SConscript([
"NetworkTest/SConscript",
"ClientTest/SConscript",
])
test = env.Alias("test", ["NetworkTest", "ClientTest"])
|