added operator overload for string

This commit is contained in:
Karroffel
2017-03-18 15:23:28 +01:00
parent 80e3e74934
commit 7fa7f7b9c5
5 changed files with 16 additions and 5 deletions

View File

@@ -57,7 +57,9 @@ elif target == "bindings":
env.Append(LINKFLAGS = ['-Wl,-R,\'$$ORIGIN/\''])
env.Append(CPPPATH=['.', './godot', './godot_cpp'])
env.Append(LIBS=['godot_cpp_core', 'godot.windows.tools.64'])
if platform == "windows":
env.Append(LIBS=['godot.windows.tools.64'])
env.Append(LIBS=['godot_cpp_core'])
env.Append(LIBPATH=["."])
env.Append(CPPFLAGS=['-D_GD_CPP_BINDING_IMPL'])