13 lines
168 B
Text
13 lines
168 B
Text
|
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])
|
||
|
|
||
|
|