cleaning up the SConstruct

This commit is contained in:
Dennis Luxen 2011-03-29 14:27:44 +00:00
parent 5217307132
commit 929793f7a8

View File

@ -156,9 +156,8 @@ env.Program("extractor.cpp")
env.Program("createHierarchy.cpp") env.Program("createHierarchy.cpp")
if os.path.exists("many-to-many.cpp"): if os.path.exists("many-to-many.cpp"):
env.Program("many-to-many.cpp") env.Program("many-to-many.cpp")
env.Append(CCFLAGS = ' -lboost_regex -lboost_iostreams -lboost_system -lbz2 -lz -lprotobuf') env.Append(CCFLAGS = ' -lboost_regex -lboost_iostreams -lbz2 -lz -lprotobuf')
env.Append(LINKFLAGS = ' -lboost_regex -lboost_iostreams -lboost_system -lbz2 -lz') env.Append(LINKFLAGS = '-lboost_system DataStructures/pbf-proto/fileformat.pb.o DataStructures/pbf-proto/osmformat.pb.o')
env.Append(LINKFLAGS = ' -lprotobuf DataStructures/pbf-proto/fileformat.pb.o DataStructures/pbf-proto/osmformat.pb.o')
env.Program("routed.cpp") env.Program("routed.cpp")
env = conf.Finish() env = conf.Finish()