2014-02-10 01:10:30 +00:00
|
|
|
Import('env')
|
|
|
|
|
2015-11-30 01:35:59 +00:00
|
|
|
ed_gl_set='#include "os_unix.h"\n'
|
|
|
|
ed_gl_set+='String OS_Unix::get_global_settings_path() const {\n'
|
|
|
|
ed_gl_set+='\treturn "' + env["unix_global_settings_path"]+'";\n'
|
|
|
|
ed_gl_set+='}\n'
|
|
|
|
f = open("os_unix_global_settings_path.cpp","wb")
|
|
|
|
f.write(ed_gl_set)
|
|
|
|
f.close()
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
env.add_source_files(env.drivers_sources,"*.cpp")
|
|
|
|
|
|
|
|
Export('env')
|