Argh, wrong structure element.
[aesalon.git] / tests / SConscript
blobe7ffc83f5529fe0c41e20dcd2565f45cb2b12749
1 sources = Glob("*.c", strings=True) + Glob("*.cpp", strings=True)
3 Import("env")
5 env.Append(CPPPATH = ["../../include/", "../../include/monitor/"])
6 env.Append(CCFLAGS = ["-W", "-Wall", "-g", "-DAesalonMonitor"])
7 env.Append(LIBS = ["rt"])
9 for test in sources:
10         targetName = test.split(".")[0]
11         env.Program(target = targetName, source = test)