diff options
| author | Juan Linietsky | 2015-12-08 17:48:03 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2015-12-08 17:48:03 -0300 |
| commit | c650d4e19c1f1fffc2f798db3d18a1ad1a58ab8b (patch) | |
| tree | 4b9280503112055e2431344547001db59702e69c /drivers/unix/SCsub | |
| parent | 09ff4571859b012b64876883e186bb7dfaca0c8c (diff) | |
| parent | e176bb6a7c736e8f2fe7fb96f2a4ecbb296dced0 (diff) | |
| download | godot-c650d4e19c1f1fffc2f798db3d18a1ad1a58ab8b.tar.gz godot-c650d4e19c1f1fffc2f798db3d18a1ad1a58ab8b.tar.zst godot-c650d4e19c1f1fffc2f798db3d18a1ad1a58ab8b.zip | |
Merge branch 'master' of https://github.com/godotengine/godot
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 9fbb467ba..e8b3cadfc 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') |
