SCsub 344 B

12345678910111213
  1. Import('env')
  2. ed_gl_set='#include "os_unix.h"\n'
  3. ed_gl_set+='String OS_Unix::get_global_settings_path() const {\n'
  4. ed_gl_set+='\treturn "' + env["unix_global_settings_path"]+'";\n'
  5. ed_gl_set+='}\n'
  6. f = open("os_unix_global_settings_path.cpp","wb")
  7. f.write(ed_gl_set)
  8. f.close()
  9. env.add_source_files(env.drivers_sources,"*.cpp")
  10. Export('env')