diff options
author | est31 <MTest31@outlook.com> | 2015-11-30 02:35:59 +0100 |
---|---|---|
committer | est31 <MTest31@outlook.com> | 2015-11-30 02:35:59 +0100 |
commit | e1d02e4831fdec372771956aa2ac70954ab3fe7b (patch) | |
tree | a95d60ae6481cd96a53af896710e43429187353a /drivers/unix/SCsub | |
parent | 15f6d3cebf9e8c9288132454816f1152e16dde36 (diff) |
Make the setting unix-only.
For this, put the detection into the OS class and its subclass.
Diffstat (limited to 'drivers/unix/SCsub')
-rw-r--r-- | drivers/unix/SCsub | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/unix/SCsub b/drivers/unix/SCsub index 9fbb467baa..e8b3cadfc7 100644 --- a/drivers/unix/SCsub +++ b/drivers/unix/SCsub @@ -1,5 +1,13 @@ Import('env') +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() + env.add_source_files(env.drivers_sources,"*.cpp") Export('env') |