diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2019-06-13 18:05:48 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2020-01-03 19:41:21 +0100 |
commit | 20f8f89c2cbe1e95a93fc89894324ccbbbf54c4b (patch) | |
tree | 66e9e98ef6a0b719f7cc27e548f067119ee0b16b | |
parent | 4b22741255652d90a6d6c2a4e0c5e248112e5e72 (diff) | |
download | godot-webrtc-native-20f8f89c2cbe1e95a93fc89894324ccbbbf54c4b.tar.gz godot-webrtc-native-20f8f89c2cbe1e95a93fc89894324ccbbbf54c4b.tar.bz2 godot-webrtc-native-20f8f89c2cbe1e95a93fc89894324ccbbbf54c4b.zip |
Use submodule for godot-cpp
-rw-r--r-- | .gitmodules | 3 | ||||
-rw-r--r-- | SConstruct | 19 | ||||
m--------- | godot-cpp | 0 | ||||
-rw-r--r-- | lib/godot-cpp/debug/x64/.gitignore | 2 | ||||
-rw-r--r-- | lib/godot-cpp/debug/x86/.gitignore | 2 | ||||
-rw-r--r-- | lib/godot-cpp/release/x64/.gitignore | 2 | ||||
-rw-r--r-- | lib/godot-cpp/release/x86/.gitignore | 2 |
7 files changed, 10 insertions, 20 deletions
diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..64fc4d4 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "godot-cpp"] + path = godot-cpp + url = https://github.com/GodotNativeTools/godot-cpp @@ -9,13 +9,6 @@ def add_sources(sources, dirpath, extension): sources.append(dirpath + '/' + f) -def get_arch_dir(name): - if name == '32': - return 'x86' - elif name == '64': - return 'x64' - return name - def gen_gdnative_lib(target, source, env): for t in target: with open(t.srcnode().path, 'w') as w: @@ -49,10 +42,11 @@ target = env['target'] host_platform = platform.system() # Local dependency paths, adapt them to your setup -godot_headers = ARGUMENTS.get('headers', '../godot_headers') -godot_cpp_headers = ARGUMENTS.get('godot_cpp_headers', '../godot-cpp/include') -godot_cpp_lib_dir = ARGUMENTS.get('godot_cpp_lib_dir', 'lib/godot-cpp') +godot_headers = ARGUMENTS.get('headers', 'godot-cpp/godot_headers') +godot_cpp_headers = ARGUMENTS.get('godot_cpp_headers', 'godot-cpp/include') +godot_cpp_lib_dir = ARGUMENTS.get('godot_cpp_lib_dir', 'godot-cpp/bin') result_path = os.path.join('bin', 'webrtc' if env['target'] == 'release' else 'webrtc_debug', 'lib') +lib_prefix = "" # Convenience check to enforce the use_llvm overrides when CXX is clang(++) if 'CXX' in env and 'clang' in os.path.basename(env['CXX']): @@ -86,6 +80,7 @@ if target_platform == 'linux': elif target_platform == 'windows': if host_platform == 'Windows': + lib_prefix = "lib" env.Append(LINKFLAGS = [ '/WX' ]) if target == 'debug': env.Append(CCFLAGS = ['/EHsc', '/D_DEBUG', '/MDd' ]) @@ -117,8 +112,8 @@ else: # Godot CPP bindings env.Append(CPPPATH=[godot_headers]) env.Append(CPPPATH=[godot_cpp_headers, godot_cpp_headers + '/core', godot_cpp_headers + '/gen']) -env.Append(LIBPATH=[godot_cpp_lib_dir + '/' + target + '/' + get_arch_dir(target_arch)]) -env.Append(LIBS=['godot-cpp']) +env.Append(LIBPATH=[godot_cpp_lib_dir]) +env.Append(LIBS=['%sgodot-cpp.%s.%s.%s' % (lib_prefix, target_platform, target, target_arch)]) # WebRTC stuff webrtc_dir = "lib/webrtc" diff --git a/godot-cpp b/godot-cpp new file mode 160000 +Subproject 7cbb846417acf0154a786bcaee8a5b1d7b40df5 diff --git a/lib/godot-cpp/debug/x64/.gitignore b/lib/godot-cpp/debug/x64/.gitignore deleted file mode 100644 index d6b7ef3..0000000 --- a/lib/godot-cpp/debug/x64/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/lib/godot-cpp/debug/x86/.gitignore b/lib/godot-cpp/debug/x86/.gitignore deleted file mode 100644 index d6b7ef3..0000000 --- a/lib/godot-cpp/debug/x86/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/lib/godot-cpp/release/x64/.gitignore b/lib/godot-cpp/release/x64/.gitignore deleted file mode 100644 index d6b7ef3..0000000 --- a/lib/godot-cpp/release/x64/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/lib/godot-cpp/release/x86/.gitignore b/lib/godot-cpp/release/x86/.gitignore deleted file mode 100644 index d6b7ef3..0000000 --- a/lib/godot-cpp/release/x86/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore |