diff --git a/Bootstrap.ps1 b/Bootstrap.ps1 index 01beeb3..4360b90 100755 --- a/Bootstrap.ps1 +++ b/Bootstrap.ps1 @@ -4,9 +4,6 @@ if ($IsWindows) { - echo "Generating Visual Studio project..." - - & "./Vendor/Premake/Windows/premake5.exe" "vs2019" } # Mac @@ -15,11 +12,6 @@ elseif ($IsMacOS) { sudo chmod +x ./gradlew sudo chmod +x ./Scripts/Package.ps1 - - echo "Generating XCode project..." - - sudo chmod +x ./Vendor/Premake/Mac/premake5 - & "./Vendor/Premake/Mac/premake5" "xcode4" } # Linux @@ -28,9 +20,4 @@ elseif ($IsLinux) { sudo chmod +x ./gradlew sudo chmod +x ./Scripts/Package.ps1 - - echo "Generating GMake project..." - - sudo chmod +x ./Vendor/Premake/Linux/premake5 - & "./Vendor/Premake/Linux/premake5" "gmake2" } diff --git a/Bootstrap.sh b/Bootstrap.sh index b54172e..e5a5567 100755 --- a/Bootstrap.sh +++ b/Bootstrap.sh @@ -7,17 +7,10 @@ sudo chmod +x ./Scripts/Package.ps1 if [ "$(expr substr $(uname -s) 1 5)" = "Linux" ] then - echo "Generating GMake project..." - - sudo chmod +x ./Vendor/Premake/Linux/premake5 - ./Vendor/Premake/Linux/premake5 gmake2 # Mac elif [ "$(uname)" = "Darwin" ] then - echo "Generating XCode project..." - sudo chmod +x ./Vendor/Premake/Mac/premake5 - ./Vendor/Premake/Mac/premake5 xcode4 fi