Target v141 toolset with msvc, update tpt-libs
Also reduce per-host connection count to 1, now that we support HTTP/2.
This commit is contained in:
parent
8fd6db56d1
commit
a57bb09d02
5
.github/build.sh
vendored
5
.github/build.sh
vendored
@ -105,7 +105,8 @@ if [[ $BSH_HOST_PLATFORM-$BSH_HOST_LIBC == windows-msvc ]]; then
|
||||
x86_64) vs_env_arch=x64;;
|
||||
x86) vs_env_arch=x86;;
|
||||
esac
|
||||
. ./.github/vs-env.sh $vs_env_arch
|
||||
VS_ENV_PARAMS=$vs_env_arch$'\t'-vcvars_ver=14.1
|
||||
. ./.github/vs-env.sh
|
||||
elif [[ $BSH_HOST_PLATFORM == darwin ]]; then
|
||||
# may need export SDKROOT=$(xcrun --show-sdk-path --sdk macosx11.1)
|
||||
CC=clang
|
||||
@ -284,7 +285,7 @@ if [[ $RELEASE_TYPE == tptlibsdev ]] && ([[ $BSH_HOST_PLATFORM == windows ]] ||
|
||||
tpt_libs_vtag=v00000000000000
|
||||
if [[ ! -f build-tpt-libs/tpt-libs/.ok ]]; then
|
||||
cd build-tpt-libs/tpt-libs
|
||||
BSH_VTAG=$tpt_libs_vtag ./build.sh
|
||||
BSH_VTAG=$tpt_libs_vtag ./.github/build.sh
|
||||
touch .ok
|
||||
cd ../../subprojects
|
||||
for i in tpt-libs-prebuilt-*; do
|
||||
|
6
.github/vs-env.sh
vendored
6
.github/vs-env.sh
vendored
@ -11,8 +11,8 @@ for i in $("$(env | grep '^ProgramFiles(x86)=' | cut -d = -f 2-)/Microsoft Visua
|
||||
-products \* \
|
||||
-utf8 \
|
||||
-property installationPath); do
|
||||
if ! [ -z ${2-} ]; then
|
||||
if ! echo $i | grep $2 >/dev/null; then
|
||||
if ! [ -z ${VS_ENV_FILTER-} ]; then
|
||||
if ! echo $i | grep $VS_ENV_FILTER >/dev/null; then
|
||||
continue
|
||||
fi
|
||||
fi
|
||||
@ -21,7 +21,7 @@ for i in $("$(env | grep '^ProgramFiles(x86)=' | cut -d = -f 2-)/Microsoft Visua
|
||||
done
|
||||
IFS=$'\t\n'
|
||||
|
||||
for i in $(MSYS_NO_PATHCONV=1 cmd /c "$vs_install_dir\\VC\\Auxiliary\\Build\\vcvarsall.bat" $1 \& env \& exit /b); do
|
||||
for i in $(MSYS_NO_PATHCONV=1 cmd /c "$vs_install_dir\\VC\\Auxiliary\\Build\\vcvarsall.bat" $VS_ENV_PARAMS \& env \& exit /b); do
|
||||
set +e
|
||||
export "$i" 2>/dev/null
|
||||
set -e
|
||||
|
@ -68,7 +68,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 = 'v20221020221431'
|
||||
tpt_libs_vtag = 'v20221029072839'
|
||||
endif
|
||||
if tpt_libs_static != 'none'
|
||||
if tpt_libs_variant not in [
|
||||
|
@ -5,7 +5,7 @@
|
||||
#include <iostream>
|
||||
|
||||
const int curl_multi_wait_timeout_ms = 100;
|
||||
const long curl_max_host_connections = 2;
|
||||
const long curl_max_host_connections = 1;
|
||||
const long curl_max_concurrent_streams = 50;
|
||||
|
||||
namespace http
|
||||
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-aarch64-android-bionic-static-debug-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-aarch64-android-bionic-static-debug-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-aarch64-android-bionic-static-debug-v20221020221431.zip
|
||||
source_hash = c8a5a2359d6e4877a4592cbd23128b33299394df6d71a127eb9024bcbce2c6b9
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-aarch64-android-bionic-static-debug-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-aarch64-android-bionic-static-debug-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-aarch64-android-bionic-static-debug-v20221029072839.zip
|
||||
source_hash = 687e5989fb0b2935299d6ebc07068893c8983f89bdbd9dc01c540fd2b4cbd4ac
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-aarch64-android-bionic-static-release-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-aarch64-android-bionic-static-release-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-aarch64-android-bionic-static-release-v20221020221431.zip
|
||||
source_hash = 42ac156682a02f9c7e29889402b8ce48df1597ec58a3664ff51f5f562837bff7
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-aarch64-android-bionic-static-release-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-aarch64-android-bionic-static-release-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-aarch64-android-bionic-static-release-v20221029072839.zip
|
||||
source_hash = 2904bff102d4a1efae807e99e33eea30f9bad88e37ad015a4cc3c9134e6e9b94
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-aarch64-darwin-macos-static-debug-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-aarch64-darwin-macos-static-debug-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-aarch64-darwin-macos-static-debug-v20221020221431.zip
|
||||
source_hash = ad4714adbd8b57108635925b5e6d205398773b93d4cc8b577e2c6c406e1da875
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-aarch64-darwin-macos-static-debug-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-aarch64-darwin-macos-static-debug-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-aarch64-darwin-macos-static-debug-v20221029072839.zip
|
||||
source_hash = 38419ec1c8b40af92bf157cbed8c47a955b0985d4a9070da797e76c305fea39c
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-aarch64-darwin-macos-static-release-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-aarch64-darwin-macos-static-release-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-aarch64-darwin-macos-static-release-v20221020221431.zip
|
||||
source_hash = f99388ea16d6f10f62c80345aee3acdc3366f110a9396c282565b9102a217429
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-aarch64-darwin-macos-static-release-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-aarch64-darwin-macos-static-release-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-aarch64-darwin-macos-static-release-v20221029072839.zip
|
||||
source_hash = df8512fe2016c6f683cb27df04ff9513056ba5b20d6f65c9c84bde8f110ff186
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-arm-android-bionic-static-debug-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-arm-android-bionic-static-debug-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-arm-android-bionic-static-debug-v20221020221431.zip
|
||||
source_hash = 3b3f908bcb78911f64bf7ee870c8a225800f773a8a14d03596b0d29515d4be94
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-arm-android-bionic-static-debug-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-arm-android-bionic-static-debug-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-arm-android-bionic-static-debug-v20221029072839.zip
|
||||
source_hash = 08677a52c863d84abc099d856286b8407948191cbf1d306aad81f20bc1ed378e
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-arm-android-bionic-static-release-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-arm-android-bionic-static-release-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-arm-android-bionic-static-release-v20221020221431.zip
|
||||
source_hash = 66acf0a14ce5d6e0a498fcd71d8465fa56dea50c81a08e2168ae3d1e11b04c1d
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-arm-android-bionic-static-release-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-arm-android-bionic-static-release-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-arm-android-bionic-static-release-v20221029072839.zip
|
||||
source_hash = 4eabc8a0d38ff519820fd62d9ad896c071ccfdd522abce28a1d9c3fce01af76a
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-android-bionic-static-debug-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-x86-android-bionic-static-debug-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-android-bionic-static-debug-v20221020221431.zip
|
||||
source_hash = 3e943491aade7259c28f202a9148532c7e35f33169a06a38b8a54052b8033782
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-android-bionic-static-debug-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-x86-android-bionic-static-debug-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-android-bionic-static-debug-v20221029072839.zip
|
||||
source_hash = b29846977ab9d3b032bb7b30e1b6a16af635b957e6b193ea1a36340193346555
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-android-bionic-static-release-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-x86-android-bionic-static-release-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-android-bionic-static-release-v20221020221431.zip
|
||||
source_hash = 3f8a1677a43815d7f6a37d9b78b0aee4f2922c20e528bbca80933ad0c5c302f2
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-android-bionic-static-release-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-x86-android-bionic-static-release-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-android-bionic-static-release-v20221029072839.zip
|
||||
source_hash = 01e9d3e86686f51f24fcbb74037eaf3a799db235cd3943de935c1d7ec57cb8a2
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-windows-msvc-dynamic-debug-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-x86-windows-msvc-dynamic-debug-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-windows-msvc-dynamic-debug-v20221020221431.zip
|
||||
source_hash = b4e1df5f956ce522303c02a59796b9e4551893cc1ee9325e50122e8419d5de57
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-windows-msvc-dynamic-debug-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-x86-windows-msvc-dynamic-debug-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-windows-msvc-dynamic-debug-v20221029072839.zip
|
||||
source_hash = f27d350d9e1a1d801f711f4f6046c943e306c260d20685824936ff51160f1e41
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-windows-msvc-dynamic-release-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-x86-windows-msvc-dynamic-release-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-windows-msvc-dynamic-release-v20221020221431.zip
|
||||
source_hash = f49024e2b38e5c57bde906f8b4a693d941b997c788200696d33f1e34e9f7ca49
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-windows-msvc-dynamic-release-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-x86-windows-msvc-dynamic-release-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-windows-msvc-dynamic-release-v20221029072839.zip
|
||||
source_hash = 11b15da306e5c3ea05555f9ee68023406ad8d6245b3efa2d16982debbc16a1b2
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-windows-msvc-static-debug-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-x86-windows-msvc-static-debug-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-windows-msvc-static-debug-v20221020221431.zip
|
||||
source_hash = 3fd325802b00ecd171e11bafc742d89f1dfcb80e2d72f168bdf656f02ab8a266
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-windows-msvc-static-debug-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-x86-windows-msvc-static-debug-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-windows-msvc-static-debug-v20221029072839.zip
|
||||
source_hash = 4bc373e671bc174ae4e668d5175553ef5d3cb23d03b58cb9d0962f12129ac518
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-windows-msvc-static-release-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-x86-windows-msvc-static-release-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-windows-msvc-static-release-v20221020221431.zip
|
||||
source_hash = 3588919c95a6b54f14e54ae6c9bcec200fc1ec66cf9a9fb86ebd75e583ffa342
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86-windows-msvc-static-release-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-x86-windows-msvc-static-release-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-x86-windows-msvc-static-release-v20221029072839.zip
|
||||
source_hash = cfd4d21808fba2f9dd42cdc0deedb73a402c1889ed5b247e591458274c2c0f67
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-android-bionic-static-debug-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-x86_64-android-bionic-static-debug-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-android-bionic-static-debug-v20221020221431.zip
|
||||
source_hash = dc546f3bb0cdea3f6da1bc9aa4db2a9427bc1c2f3d885fa76d2dbd43870e0f07
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-android-bionic-static-debug-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-x86_64-android-bionic-static-debug-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-android-bionic-static-debug-v20221029072839.zip
|
||||
source_hash = f6ee1046cb0701640be89b59365fe3b3ee463cc91a9ad7ab244fc10652cfb0b7
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-android-bionic-static-release-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-x86_64-android-bionic-static-release-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-android-bionic-static-release-v20221020221431.zip
|
||||
source_hash = 521d5711cdcc69a90ef5dbfac4e4aa3046b38dbf18fa6ae6ced67785e6205858
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-android-bionic-static-release-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-x86_64-android-bionic-static-release-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-android-bionic-static-release-v20221029072839.zip
|
||||
source_hash = 3e4a1a1811dfc8dece23631bb745353efc5bbe5eef5e0fb68a76cdaec59e765a
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-darwin-macos-static-debug-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-x86_64-darwin-macos-static-debug-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-darwin-macos-static-debug-v20221020221431.zip
|
||||
source_hash = 8c06e7c332a143a292f11680d4492d9c10a88fe47dd6f1290bffea0f1a4272f3
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-darwin-macos-static-debug-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-x86_64-darwin-macos-static-debug-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-darwin-macos-static-debug-v20221029072839.zip
|
||||
source_hash = 40957ebe07c3174d8d72ea0db1e0e1b5c9e70d8146b6cb0b32909762fe68b6af
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-darwin-macos-static-release-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-x86_64-darwin-macos-static-release-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-darwin-macos-static-release-v20221020221431.zip
|
||||
source_hash = 6e50a44eed19f1a594b4190acfad2445141923935509b53ec362b131fd294d5f
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-darwin-macos-static-release-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-x86_64-darwin-macos-static-release-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-darwin-macos-static-release-v20221029072839.zip
|
||||
source_hash = 80efb8abcce244d38dea8903d0f2da7ac1779e8774501a9fc13e3903663d21b1
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-linux-gnu-static-debug-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-x86_64-linux-gnu-static-debug-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-linux-gnu-static-debug-v20221020221431.zip
|
||||
source_hash = ae18e6b37eed16e7e526e67b14a502dafccd71e513d42830fc15b527690b22dc
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-linux-gnu-static-debug-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-x86_64-linux-gnu-static-debug-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-linux-gnu-static-debug-v20221029072839.zip
|
||||
source_hash = bf226e0606c14d590d13dae85a91b34dd6773932860d3c29088c0bd5c969177e
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-linux-gnu-static-release-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-x86_64-linux-gnu-static-release-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-linux-gnu-static-release-v20221020221431.zip
|
||||
source_hash = 5356ada044ea59b9c62cf0739a8306d3e002e9cefac8b9913392ac0909bf68d4
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-linux-gnu-static-release-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-x86_64-linux-gnu-static-release-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-linux-gnu-static-release-v20221029072839.zip
|
||||
source_hash = 36502abf894a16016e6c762bd5a22c382287d34ebf6e4fc5cef190e213848140
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-debug-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-debug-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-debug-v20221020221431.zip
|
||||
source_hash = ff6123b3fc349fa11e1262fc7b79cab6f7b1cff6ab04b7c3c8d97546721f121d
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-debug-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-debug-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-debug-v20221029072839.zip
|
||||
source_hash = 9afc9e7280725afd3c65149c64740c5a21998c6c73834ba079ec2547e41bb31a
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-release-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-release-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-release-v20221020221431.zip
|
||||
source_hash = 0aa9901c9b97848237d626c45735f4b331345adcb9f8b4799a6a49460046973b
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-release-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-release-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-dynamic-release-v20221029072839.zip
|
||||
source_hash = 4e6487baeba6a60dcbb4901bb706d27da1805f5fe4016a2e457352bc9cd0af33
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-mingw-static-debug-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-x86_64-windows-mingw-static-debug-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-static-debug-v20221020221431.zip
|
||||
source_hash = 1f727f112bb803bcbfd7194ee227d13893c4e55dc983343877b2d513edbce01e
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-mingw-static-debug-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-x86_64-windows-mingw-static-debug-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-static-debug-v20221029072839.zip
|
||||
source_hash = 4798f58846f6d774a6eb86c90db4374e28dd7b7dc8e12fb1a80fd3bcd7048782
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-mingw-static-release-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-x86_64-windows-mingw-static-release-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-static-release-v20221020221431.zip
|
||||
source_hash = 930265f7e9d78e06e58de2d696ccad4df24c9b619cb38e2fb64c64fe6e25aa01
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-mingw-static-release-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-x86_64-windows-mingw-static-release-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-mingw-static-release-v20221029072839.zip
|
||||
source_hash = 9de793176cfee6499ca020e82335c02f2330ef30f9eade107a57b459be770f0d
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-debug-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-debug-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-debug-v20221020221431.zip
|
||||
source_hash = 77d1c8ca5fb7cf7782ed10b6fccdfcbe4afe4b72946d02e8327af54448074ece
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-debug-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-debug-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-debug-v20221029072839.zip
|
||||
source_hash = 959efed139e8f3631fe5e388ade0b2a716778725d4592a6bbe63bd99a35a8b3f
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-release-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-release-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-release-v20221020221431.zip
|
||||
source_hash = 1a65e6d316bd6b642f54083cfd9249b4fcf0b8920d01fb21c69dc2dbf7dba937
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-release-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-release-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-dynamic-release-v20221029072839.zip
|
||||
source_hash = 3c1362c1b3b6df61d00e8a0f1631b299cdc89836b39238930f75ca07da1d05e0
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-msvc-static-debug-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-x86_64-windows-msvc-static-debug-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-static-debug-v20221020221431.zip
|
||||
source_hash = ed4be37c9ed664f120471d5e6a7a0af5fcdf3e260d50922792b9c87cbd0de194
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-msvc-static-debug-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-x86_64-windows-msvc-static-debug-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-static-debug-v20221029072839.zip
|
||||
source_hash = 69f02bfbf1e52c9b045aafd2ad5ba4ec90d82ae54dadcf414d67f9c3fe8c1115
|
@ -1,6 +0,0 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-msvc-static-release-v20221020221431
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221020221431/tpt-libs-prebuilt-x86_64-windows-msvc-static-release-v20221020221431.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-static-release-v20221020221431.zip
|
||||
source_hash = 2824915c4f1126b48fcb2f463631e3577b7d27fe20d372c0e432de291d57c73f
|
@ -0,0 +1,6 @@
|
||||
[wrap-file]
|
||||
directory = tpt-libs-prebuilt-x86_64-windows-msvc-static-release-v20221029072839
|
||||
|
||||
source_url = https://github.com/The-Powder-Toy/tpt-libs/releases/download/v20221029072839/tpt-libs-prebuilt-x86_64-windows-msvc-static-release-v20221029072839.zip
|
||||
source_filename = tpt-libs-prebuilt-x86_64-windows-msvc-static-release-v20221029072839.zip
|
||||
source_hash = 2880e68f58a21b98652056a97022507b33f174a357fffd944db03972be7fe0ce
|
Loading…
Reference in New Issue
Block a user