fc8ccd5b8c
Also switch existing shebangs to "better" /usr/bin/env python.
12 lines
189 B
Python
12 lines
189 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
env.main_sources=[]
|
|
env.add_source_files(env.main_sources,"*.cpp")
|
|
|
|
Export('env')
|
|
|
|
lib = env.Library("main",env.main_sources)
|
|
|
|
env.Prepend(LIBS=[lib])
|