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