forked from freeorion/freeorion-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap.bat
22 lines (22 loc) · 886 Bytes
/
bootstrap.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@echo off
echo ----------------------------------------------------
echo FreeOrion Windows SDK bootstrapper
echo ----------------------------------------------------
echo For help on compiling FreeOrion, look at at BUILD.md in
echo the FreeOrion repository root directory.
echo Note: You need to have MSVC 2019 or 2022 installed to use
echo the SDK to build FreeOrion.
echo ----------------------------------------------------
echo Cloning the FreeOrion repository from GitHub...
cd "%~d0%~p0"
git clone [email protected]:freeorion/freeorion.git FreeOrion
move bin\* FreeOrion\ > NUL
rmdir bin
echo Done.
echo ----------------------------------------------------
echo To update your clone of the repo later use your git client
echo The MSVC 2019 solution is located at:
echo %~d0%~p0FreeOrion\msvc2019\FreeOrion.sln
echo now. Have fun while developing! :D
pause
del bootstrap.bat