godot/drivers/unix/SCsub

16 lines
385 B
Plaintext
Raw Normal View History

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'
f = open("os_unix_global_settings_path.cpp","wb")
2015-12-09 15:57:44 +01:00
f.write(g_set_p)
f.close()
2014-02-10 02:10:30 +01:00
env.add_source_files(env.drivers_sources,"*.cpp")
Export('env')