Implemented basic modules buildsystem.
[aesalon.git] / modules / cpuTime / src / SConscript
blobef87f72d9acf17d6ac5be336669394017781812e
1 Import("env")
3 env.Append(CPPPATH = ["../../include/", "../../include/collector/"])
4 env.Append(CCFLAGS = ["-W", "-Wall", "-DAesalonCollector"])
5 env.Append(LIBS = ["rt"])
7 env.SharedLibrary(target="collector", source=Glob("collector/*.c"))
8 env.SharedLibrary(target="monitor", source=Glob("monitor/*.cpp"))