Files
UnrealEngine/Engine/Source/ThirdParty/GoogleTest/build/uncompress_and_patch.sh
2025-05-18 13:04:45 +08:00

17 lines
322 B
Bash

#!/bin/sh
# Prerequisites:
# xcode
# cmake 3.5
#####################
# This unzips the tar.gz and applies any patches stored in the google-test-source-patches directory
# uncompress_and_patch.bat
archive=${1}
unzip $archive
mv ${archive%.*} "google-test-source"
#cp google-test-source-patches/* google-test-source/