-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add batch file for Unity 2017.1 package
- Loading branch information
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
@echo off | ||
|
||
REM Setup | ||
REM Install perl on your system, if not already existent: https://www.perl.org/get.html | ||
REM Set environment variables: | ||
REM UNITY_2017_1_PATH is the path to your Unity3D 2017.1 installation (e.g. C:\Program Files\Unity) | ||
|
||
if ["%UNITY_2017_1_PATH%"] == [""] ( | ||
echo UNITY_2017_1_PATH not set | ||
goto :EOF | ||
) | ||
|
||
BuildUnityPackage.bat "%UNITY_2017_1_PATH%" "Debug" "Slash.Framework.1.X.Unity.2017.1" > logs/BuildUnity20171Package.log |