Minor changes here and there.
[aesalon.git] / tests / SConscript
blob27feb994e2460bf5224c7db7d7111b46576a2efc
1 sources = Glob("*.c", strings=True) + Glob("*.cpp", strings=True)
3 Import("env")
5 testsEnv = env.Clone()
7 testsEnv.Append(LIBS = ["rt"])
9 for test in sources:
10         targetName = test.split(".")[0]
11         env.Program(target = targetName, source = test)