aboutsummaryrefslogtreecommitdiff
path: root/modules/gdnative/SCsub
diff options
context:
space:
mode:
authorgeequlim2017-12-15 22:35:16 +0800
committergeequlim2017-12-18 23:23:29 +0800
commit13bd5c22c698e5b36db9012d4d5a5fd14076dfdc (patch)
tree299d2f364eff19c86defb64eba38b626eb5e087a /modules/gdnative/SCsub
parentb3a1bf324566af58ceedc918c83396cba97aeedb (diff)
downloadgodot-13bd5c22c698e5b36db9012d4d5a5fd14076dfdc.tar.gz
godot-13bd5c22c698e5b36db9012d4d5a5fd14076dfdc.tar.zst
godot-13bd5c22c698e5b36db9012d4d5a5fd14076dfdc.zip
Add plugin to edit GDNativeLibrary
Rename GDNativeLibraryEditor to GDNativeLibrarySingletonEditor
Diffstat (limited to 'modules/gdnative/SCsub')
-rw-r--r--modules/gdnative/SCsub4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdnative/SCsub b/modules/gdnative/SCsub
index fd11c8d09..4e73ebfb9 100644
--- a/modules/gdnative/SCsub
+++ b/modules/gdnative/SCsub
@@ -3,12 +3,12 @@
Import('env')
gdn_env = env.Clone()
-
-gdn_env.add_source_files(env.modules_sources, "gd_native_library_editor.cpp")
gdn_env.add_source_files(env.modules_sources, "gdnative.cpp")
gdn_env.add_source_files(env.modules_sources, "register_types.cpp")
gdn_env.add_source_files(env.modules_sources, "gdnative/*.cpp")
gdn_env.add_source_files(env.modules_sources, "nativescript/*.cpp")
+gdn_env.add_source_files(env.modules_sources, "gdnative_library_singleton_editor.cpp")
+gdn_env.add_source_files(env.modules_sources, "gdnative_library_editor_plugin.cpp")
gdn_env.Append(CPPPATH=['#modules/gdnative/include/'])