switch to two voip addon

This commit is contained in:
Nordup 2025-09-15 17:30:54 +07:00
parent cf11ceffc4
commit 9ce4caa073
39 changed files with 193 additions and 52 deletions

View file

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>libtwovoip.macos.template_debug.universal.dylib</string>
<key>CFBundleName</key>
<string>TwoVoIP</string>
<key>CFBundleDisplayName</key>
<string>TwoVoIP</string>
<key>CFBundleIdentifier</key>
<string>ru.dmitriysalnikov.twovoip</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright (c) Dmitriy Salnikov.</string>
<key>CFBundleVersion</key>
<string>1.1.0</string>
<key>CFBundleShortVersionString</key>
<string>1.1.0</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CSResourcesFileMapped</key>
<true/>
<key>DTPlatformName</key>
<string>macosx</string>
<key>LSMinimumSystemVersion</key>
<string>10.15</string>
</dict>
</plist>

View file

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>libtwovoip.macos.template_release.universal.dylib</string>
<key>CFBundleName</key>
<string>TwoVoIP</string>
<key>CFBundleDisplayName</key>
<string>TwoVoIP</string>
<key>CFBundleIdentifier</key>
<string>ru.dmitriysalnikov.twovoip</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright (c) Dmitriy Salnikov.</string>
<key>CFBundleVersion</key>
<string>1.1.0</string>
<key>CFBundleShortVersionString</key>
<string>1.1.0</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CSResourcesFileMapped</key>
<true/>
<key>DTPlatformName</key>
<string>macosx</string>
<key>LSMinimumSystemVersion</key>
<string>10.15</string>
</dict>
</plist>

View file

@ -0,0 +1,79 @@
[configuration]
entry_symbol = "two_voip_library_init"
compatibility_minimum = "4.1.4"
reloadable = false
[dependencies]
; example.x86_64 = { "relative or absolute path to the dependency" : "the path relative to the exported project", }
; -------------------------------------
; debug
macos = { }
windows.x86_64 = { }
linux.x86_64 = { }
; by default godot is using threads
web.wasm32.nothreads = {}
web.wasm32 = {}
android.arm32 = { }
android.arm64 = { }
android.x86_32 = { }
android.x86_64 = { }
ios = {}
; -------------------------------------
; release
macos.template_release = { }
windows.template_release.x86_64 = { }
linux.template_release.x86_64 = { }
web.template_release.wasm32.nothreads = { }
web.template_release.wasm32 = { }
android.template_release.arm32 = { }
android.template_release.arm64 = { }
android.template_release.x86_32 = { }
android.template_release.x86_64 = { }
ios.template_release = {}
[libraries]
; -------------------------------------
; debug
macos = "libs/libtwovoip.macos.template_debug.universal.framework"
windows.x86_64 = "libs/libtwovoip.windows.template_debug.x86_64.dll"
linux.x86_64 = "libs/libtwovoip.linux.template_debug.x86_64.so"
web.wasm32.nothreads = "libs/libtwovoip.web.template_debug.wasm32.wasm"
web.wasm32 = "libs/libtwovoip.web.template_debug.wasm32.threads.wasm"
android.arm32 = "libs/libtwovoip.android.template_debug.arm32.so"
android.arm64 = "libs/libtwovoip.android.template_debug.arm64.so"
android.x86_32 = "libs/libtwovoip.android.template_debug.x86_32.so"
android.x86_64 = "libs/libtwovoip.android.template_debug.x86_64.so"
ios = "libs/libtwovoip.ios.template_debug.universal.dylib"
; -------------------------------------
; release
macos.template_release = "libs/libtwovoip.macos.template_release.universal.framework"
windows.template_release.x86_64 = "libs/libtwovoip.windows.template_release.x86_64.dll"
linux.template_release.x86_64 = "libs/libtwovoip.linux.template_release.x86_64.so"
web.template_release.wasm32.nothreads = "libs/libtwovoip.web.template_release.wasm32.wasm"
web.template_release.wasm32 = "libs/libtwovoip.web.template_release.wasm32.threads.wasm"
android.template_release.arm32 = "libs/libtwovoip.android.template_release.arm32.so"
android.template_release.arm64 = "libs/libtwovoip.android.template_release.arm64.so"
android.template_release.x86_32 = "libs/libtwovoip.android.template_release.x86_32.so"
android.template_release.x86_64 = "libs/libtwovoip.android.template_release.x86_64.so"
ios.template_release = "libs/libtwovoip.ios.template_release.universal.dylib"