aboutsummaryrefslogtreecommitdiff
path: root/drivers/unix/SCsub
diff options
context:
space:
mode:
authorJuan Linietsky2015-12-08 17:48:03 -0300
committerJuan Linietsky2015-12-08 17:48:03 -0300
commitc650d4e19c1f1fffc2f798db3d18a1ad1a58ab8b (patch)
tree4b9280503112055e2431344547001db59702e69c /drivers/unix/SCsub
parent09ff4571859b012b64876883e186bb7dfaca0c8c (diff)
parente176bb6a7c736e8f2fe7fb96f2a4ecbb296dced0 (diff)
downloadgodot-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/SCsub8
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')