diff options
author | est31 <MTest31@outlook.com> | 2015-12-09 15:57:44 +0100 |
---|---|---|
committer | est31 <MTest31@outlook.com> | 2015-12-09 16:06:00 +0100 |
commit | 3dbf7dd7facb41792347c659776f9f6dac5b06f9 (patch) | |
tree | 7f375b6c8070b889d5e29eb7f9eee7565b665d01 /drivers/unix/SCsub | |
parent | aadced2f72476f637c6c14e48d3811e088eda951 (diff) |
Fix windows build
Diffstat (limited to 'drivers/unix/SCsub')
-rw-r--r-- | drivers/unix/SCsub | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/drivers/unix/SCsub b/drivers/unix/SCsub index e8b3cadfc7..3d46a85cdf 100644 --- a/drivers/unix/SCsub +++ b/drivers/unix/SCsub @@ -1,11 +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' +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") -f.write(ed_gl_set) +f.write(g_set_p) f.close() env.add_source_files(env.drivers_sources,"*.cpp") |