mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-01-16 22:08:28 +01:00
Have ghactions check if dynamic windows builds have all their dependencies
Also update tpt-libs to properly fix the bug I fixed very temporarily earlier.
This commit is contained in:
parent
ef8764e6ab
commit
6756c27274
8
.github/build.sh
vendored
8
.github/build.sh
vendored
@ -382,6 +382,14 @@ if [[ $BSH_BUILD_PLATFORM == windows ]]; then
|
||||
set -e
|
||||
cat $APP_EXE.exe.rsp
|
||||
[[ $ninja_code == 0 ]];
|
||||
echo # rsps don't usually have a newline at the end
|
||||
if [[ "$BSH_HOST_PLATFORM-$BSH_STATIC_DYNAMIC $BSH_BUILD_PLATFORM" == "windows-dynamic windows" ]]; then
|
||||
# on windows we provide the dynamic dependencies also; makes sense to check for their presence
|
||||
# msys ldd works fine but only on windows build machines
|
||||
if ldd $APP_EXE | grep "not found"; then
|
||||
exit 1 # ldd | grep will have printed missing deps
|
||||
fi
|
||||
fi
|
||||
else
|
||||
ninja -v
|
||||
fi
|
||||
|
@ -85,7 +85,7 @@ tpt_libs_debug = is_debug ? 'debug' : 'release'
|
||||
tpt_libs_variant = '@0@-@1@-@2@-@3@'.format(host_arch, host_platform, host_libc, tpt_libs_static)
|
||||
tpt_libs_vtag = get_option('tpt_libs_vtag')
|
||||
if tpt_libs_vtag == ''
|
||||
tpt_libs_vtag = 'v20230101182417'
|
||||
tpt_libs_vtag = 'v20230205154205'
|
||||
endif
|
||||
if tpt_libs_static != 'none'
|
||||
if tpt_libs_variant not in [
|
||||
@ -286,12 +286,6 @@ if host_platform == 'windows'
|
||||
foreach input_output_condition : tpt_libs.get_variable('config_dlls')
|
||||
dll_input = input_output_condition[0]
|
||||
dll_output = input_output_condition[1]
|
||||
if tpt_libs_vtag == 'v20230101182417' and host_libc == 'mingw' and dll_output == 'libbz2.dll'
|
||||
# v20230101182417 (and possibly earlier releases but whatever) copies bz2's dll
|
||||
# in as libbz2.dll, when the .lib has the executable link against bz2.dll. I blame
|
||||
# the insanely inconsistent build system configurations these libraries use.
|
||||
dll_output = 'bz2.dll'
|
||||
endif
|
||||
dll_condition = input_output_condition[2]
|
||||
do_copy = false
|
||||
if dll_condition == 'all'
|
||||
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-aarch64-android-bionic-static-debug-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-aarch64-android-bionic-static-debug-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-aarch64-android-bionic-static-debug-v20230101182417.zip
|
||||
source_hash = 32b4fd3bbe3346731d1ae72aadf6aff88fb77a4b97d9e27d59a50a7450ba9ea4
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-aarch64-android-bionic-static-debug-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-aarch64-android-bionic-static-debug-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-aarch64-android-bionic-static-debug-v20230205154205.zip
|
||||
source_hash = d7bd10c6939a779dd8e28783519cc8e05dea201ae3bd9e7edd050ee30430a670
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-aarch64-android-bionic-static-release-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-aarch64-android-bionic-static-release-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-aarch64-android-bionic-static-release-v20230101182417.zip
|
||||
source_hash = 84dc5a4600736624c816ac545fa3bce4cc6059dcb34edcc78e4021a421eb8151
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-aarch64-android-bionic-static-release-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-aarch64-android-bionic-static-release-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-aarch64-android-bionic-static-release-v20230205154205.zip
|
||||
source_hash = 0f42b3864f0bd20079d8a89136357cd679962ccaee957c1a7fa5f8f33df6781e
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-aarch64-darwin-macos-static-debug-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-aarch64-darwin-macos-static-debug-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-aarch64-darwin-macos-static-debug-v20230101182417.zip
|
||||
source_hash = 4ffb06da9d44fda130add5f909f4dd60593e80348c789014ba15424c77577a49
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-aarch64-darwin-macos-static-debug-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-aarch64-darwin-macos-static-debug-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-aarch64-darwin-macos-static-debug-v20230205154205.zip
|
||||
source_hash = 330af580a037604519bea913d457d343aacb23b647b2842692cc9ffc53402801
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-aarch64-darwin-macos-static-release-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-aarch64-darwin-macos-static-release-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-aarch64-darwin-macos-static-release-v20230101182417.zip
|
||||
source_hash = 1ada5f8513282b2ed8c2c2c786ae5a608b409b2a6ad10aa0bc23694bc6cd61d7
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-aarch64-darwin-macos-static-release-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-aarch64-darwin-macos-static-release-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-aarch64-darwin-macos-static-release-v20230205154205.zip
|
||||
source_hash = 561c58811dd6567512884e903018e047b235198efaf3c138e466e397aa4a1d14
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-arm-android-bionic-static-debug-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-arm-android-bionic-static-debug-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-arm-android-bionic-static-debug-v20230101182417.zip
|
||||
source_hash = 3d55ad05f9157c32aade2f738ebbf17e2bb41300ebc89af44ae87a191c085476
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-arm-android-bionic-static-debug-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-arm-android-bionic-static-debug-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-arm-android-bionic-static-debug-v20230205154205.zip
|
||||
source_hash = 8611687c92596c64486d7280c5ceb106e5eff4352b4438b4050046286f8ad0fa
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-arm-android-bionic-static-release-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-arm-android-bionic-static-release-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-arm-android-bionic-static-release-v20230101182417.zip
|
||||
source_hash = 425024f13319d8a29e0bccb93863b83b3e8a2861439a3ab3c3452b3c938c363b
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-arm-android-bionic-static-release-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-arm-android-bionic-static-release-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-arm-android-bionic-static-release-v20230205154205.zip
|
||||
source_hash = db7ddda648aade2b390e0f03a7b4ca61577cc29c01323668b50ecd89aeff12da
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-android-bionic-static-debug-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86-android-bionic-static-debug-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-android-bionic-static-debug-v20230101182417.zip
|
||||
source_hash = f285d95d994b5a381c816a9dc8044c5daa5bf2002f36fd5b9109643231db1247
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-android-bionic-static-debug-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-x86-android-bionic-static-debug-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-android-bionic-static-debug-v20230205154205.zip
|
||||
source_hash = 6419b422a5f79509c7ca1f08a3ccaa97a7475db3ded99b9073a2b682819758f3
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-android-bionic-static-release-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86-android-bionic-static-release-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-android-bionic-static-release-v20230101182417.zip
|
||||
source_hash = 5428b5b21c02e0b14bd4be1f200c9f8b272fcc59882f0d3337e523533b555826
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-android-bionic-static-release-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-x86-android-bionic-static-release-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-android-bionic-static-release-v20230205154205.zip
|
||||
source_hash = ac6e3a6bb88f2bd66aa9f6bb29d0675feac6ad284145849feac2311b43b80abc
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-windows-msvc-dynamic-debug-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86-windows-msvc-dynamic-debug-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-windows-msvc-dynamic-debug-v20230101182417.zip
|
||||
source_hash = e0f1c3b57cf0277fc3e77864be1b95b53137a71040e1355f68a5faf15ed3bc2c
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-windows-msvc-dynamic-debug-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-x86-windows-msvc-dynamic-debug-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-windows-msvc-dynamic-debug-v20230205154205.zip
|
||||
source_hash = 31bcb99b756909fadb6dc4b66a347435a040e384b4418a2ae4739ebb7383c6dd
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-windows-msvc-dynamic-release-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86-windows-msvc-dynamic-release-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-windows-msvc-dynamic-release-v20230101182417.zip
|
||||
source_hash = 99ab721540a0d22347ed78b75816050408609611821aa453191476e469c4e09e
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-windows-msvc-dynamic-release-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-x86-windows-msvc-dynamic-release-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-windows-msvc-dynamic-release-v20230205154205.zip
|
||||
source_hash = a17f71f9cee99a69abbb54bd0e0f01e9c48e79e1e26d73334d1690c73afac0c8
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-windows-msvc-static-debug-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86-windows-msvc-static-debug-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-windows-msvc-static-debug-v20230101182417.zip
|
||||
source_hash = 2b610634de0b70d84a47b3c0b2d1fbab1d877b0ba6fed2e9a7cf81dffe80b1c4
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-windows-msvc-static-debug-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-x86-windows-msvc-static-debug-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-windows-msvc-static-debug-v20230205154205.zip
|
||||
source_hash = e5e073d65c1e26dbd5d854ec865917d1a14298cddc72474cc4a1e4830ee27969
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-windows-msvc-static-release-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86-windows-msvc-static-release-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-windows-msvc-static-release-v20230101182417.zip
|
||||
source_hash = a3f33b8b1332c0bb81ae81903c7091f45b4f349e5d36b500254c26eca2e34757
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-windows-msvc-static-release-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-x86-windows-msvc-static-release-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-windows-msvc-static-release-v20230205154205.zip
|
||||
source_hash = 018213f1efab1a29ab32daba6298b9e54e612617bb3d7a59438e2489f20f83e2
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-android-bionic-static-debug-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-android-bionic-static-debug-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-android-bionic-static-debug-v20230101182417.zip
|
||||
source_hash = e0c61a46edacf3d8e867c31646588f9d95e0fdfb8e96b3442d9f6b52b6490db4
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-android-bionic-static-debug-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-x86_64-android-bionic-static-debug-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-android-bionic-static-debug-v20230205154205.zip
|
||||
source_hash = 8a06f5eb59668ed3de4dfb706f6e403952e4730609898f218a38f1f6ee0971b9
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-android-bionic-static-release-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-android-bionic-static-release-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-android-bionic-static-release-v20230101182417.zip
|
||||
source_hash = ee609039b1167460a49f712713cb6d99fef33479088513c4078e47b06225553e
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-android-bionic-static-release-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-x86_64-android-bionic-static-release-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-android-bionic-static-release-v20230205154205.zip
|
||||
source_hash = 027bf628aa18454c99622e792aa751c1979c1e564482d59fac4125515767e870
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-darwin-macos-static-debug-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-darwin-macos-static-debug-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-darwin-macos-static-debug-v20230101182417.zip
|
||||
source_hash = 108fc60e3601fe2784c17294eb159db97f494b3bbe396af8db74d43694acfa54
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-darwin-macos-static-debug-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-x86_64-darwin-macos-static-debug-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-darwin-macos-static-debug-v20230205154205.zip
|
||||
source_hash = 87890379194b23bad79b44cac51a3e32c1a8889e480d49220e912ec02357ed9c
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-darwin-macos-static-release-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-darwin-macos-static-release-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-darwin-macos-static-release-v20230101182417.zip
|
||||
source_hash = 55d8525ed077e8fef0ad74baeda6d4cbd23d4da1c70d39f44dc935ab4fd3a8ce
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-darwin-macos-static-release-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-x86_64-darwin-macos-static-release-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-darwin-macos-static-release-v20230205154205.zip
|
||||
source_hash = ed0e62e82dd76572dd6af06577524fa67c7907470272c9003d73f9f154f063b5
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-linux-gnu-static-debug-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-linux-gnu-static-debug-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-linux-gnu-static-debug-v20230101182417.zip
|
||||
source_hash = 4930ddc764e357e79bcaa83a0aef7cf88114a61adfc735c355cc1b4e04041ec5
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-linux-gnu-static-debug-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-x86_64-linux-gnu-static-debug-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-linux-gnu-static-debug-v20230205154205.zip
|
||||
source_hash = 41357dc681f6c761f4cf209ceedb2c6cb38e6dc48380ec48de0dc2af2ebfe39c
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-linux-gnu-static-release-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-linux-gnu-static-release-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-linux-gnu-static-release-v20230101182417.zip
|
||||
source_hash = c1e55114d752985b35e767ae2d0ba91e1309016c9eb573dfa9f760ba912a8a63
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-linux-gnu-static-release-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-x86_64-linux-gnu-static-release-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-linux-gnu-static-release-v20230205154205.zip
|
||||
source_hash = d32c6efeb82a0a691c84cd1fde7fb54266e720a2bb3300ed2e25ad9c68d15985
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-debug-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-debug-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-debug-v20230101182417.zip
|
||||
source_hash = 1486531df79f5013cc054ee33f07c638910d12605455eff38c9a2740105eba8e
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-debug-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-debug-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-debug-v20230205154205.zip
|
||||
source_hash = 979b021cdb0a96a5edf49c8aa4790f630131eaa5f25540ed3539d89d6fe637ae
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-release-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-release-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-release-v20230101182417.zip
|
||||
source_hash = d741d2b4b9904be4b66b3386bc225e6a83d5150236da30014511c1e2490d21be
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-release-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-release-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-release-v20230205154205.zip
|
||||
source_hash = cb2ded593f9e470cdd8d8f3d49a759d9f751c080faf6750f2d076a5559cf3ee0
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-mingw-static-debug-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-windows-mingw-static-debug-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-static-debug-v20230101182417.zip
|
||||
source_hash = c0ce5d680eeac02020b9371b8c88996be4259b86ff7da0dfa8bfd9d8d4fda236
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-mingw-static-debug-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-x86_64-windows-mingw-static-debug-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-static-debug-v20230205154205.zip
|
||||
source_hash = 9a47742b7e22491b3350f686ee149236a425a555a91abc4b0356f3f11432ad03
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-mingw-static-release-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-windows-mingw-static-release-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-static-release-v20230101182417.zip
|
||||
source_hash = f1aad736e0e6e60b7bee8c271922b6cc8f6d0cd1af895a6470dd1448027f4e8e
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-mingw-static-release-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-x86_64-windows-mingw-static-release-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-static-release-v20230205154205.zip
|
||||
source_hash = 3944d6b5cb26f53785b52b33c542bdc9aa10a5443b0be98f402a315dc4a113bf
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-debug-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-debug-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-debug-v20230101182417.zip
|
||||
source_hash = 85633cb9f8b257bdcb75ae414d3642183b370d82120dfbf4152033b39dbaf536
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-debug-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-debug-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-debug-v20230205154205.zip
|
||||
source_hash = 21603a4a04ce066b86683a3535bffaaa1327181b06c4f8fe7d094faba2dd2184
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-release-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-release-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-release-v20230101182417.zip
|
||||
source_hash = 39617c2836806dc479fa7c26b7c83bc045b471c70d97063876a1ab6352156260
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-release-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-release-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-release-v20230205154205.zip
|
||||
source_hash = 748751bdc031be172d731ee2f05a4cf33419858b9e896fed3a8e3753604eadfe
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-msvc-static-debug-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-windows-msvc-static-debug-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-static-debug-v20230101182417.zip
|
||||
source_hash = 7bfb1e49c47c5feb3645ab4f90e8a77b753c4acd585e8868fe91c992815a4291
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-msvc-static-debug-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-x86_64-windows-msvc-static-debug-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-static-debug-v20230205154205.zip
|
||||
source_hash = 7e9c85f54dc03c78f8e221c46a4ae4b9409239f949393cd978711f85279448e4
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-msvc-static-release-v20230101182417
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230101182417/tpt-libs-prebuilt-x86_64-windows-msvc-static-release-v20230101182417.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-static-release-v20230101182417.zip
|
||||
source_hash = 3573cfc463855a64ce758548c16088637b8a3337dfc72b5e6add0e17534ab8b1
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-msvc-static-release-v20230205154205
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20230205154205/tpt-libs-prebuilt-x86_64-windows-msvc-static-release-v20230205154205.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-static-release-v20230205154205.zip
|
||||
source_hash = dbfa2ed0f2a2ffe4be1c82915145cdb28480be134df835d89a7aa0f7690140af
|
Loading…
x
Reference in New Issue
Block a user