-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Alexander Kurbatov <[email protected]>
- Loading branch information
1 parent
860630a
commit 9ab2651
Showing
1 changed file
with
6 additions
and
10 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 |
---|---|---|
|
@@ -33,16 +33,12 @@ Feel free to post questions on the unofficial StarCraft II AI Discord server. [I | |
### Windows (Visual Studio) | ||
```bat | ||
:: Get the project. | ||
$ git clone --recursive [email protected]:cpp-sc2/blank-bot.git | ||
$ git clone [email protected]:cpp-sc2/blank-bot.git | ||
$ cd blank-bot | ||
:: Create Visual Studio project files in the directory "build" | ||
:: Create Visual Studio project files in the directory "build". | ||
:: For Visual Studio 2022 | ||
$ cmake -B build -G "Visual Studio 17 2022" | ||
:: For Visual Studio 2019 | ||
$ cmake -B build -G "Visual Studio 16 2019" | ||
:: For Visual Studio 2017 | ||
$ cmake -B build -G "Visual Studio 15 2017 Win64" | ||
:: Build the project using Visual Studio. | ||
$ start build\BlankBot.sln | ||
|
@@ -54,9 +50,9 @@ $ build\bin\Debug\BlankBot.exe Ladder2019Season3/AcropolisLE.SC2Map | |
### Linux (command line) | ||
```bash | ||
# Get the project. | ||
$ git clone --recursive [email protected]:cpp-sc2/blank-bot.git && cd blank-bot | ||
$ git clone [email protected]:cpp-sc2/blank-bot.git && cd blank-bot | ||
|
||
# Generate CMake build tree | ||
# Generate CMake build tree. | ||
$ cmake -B build | ||
|
||
# Build the project. | ||
|
@@ -69,9 +65,9 @@ $ ./build/bin/BlankBot "/home/alkurbatov/Ladder2019Season3/AcropolisLE.SC2Map" | |
### OS X (Xcode) | ||
```bash | ||
# Get the project. | ||
$ git clone --recursive [email protected]:cpp-sc2/blank-bot.git && cd blank-bot | ||
$ git clone [email protected]:cpp-sc2/blank-bot.git && cd blank-bot | ||
|
||
# Generate CMake build tree | ||
# Generate CMake build tree. | ||
$ cmake -B build -G Xcode | ||
|
||
# Build the project using Xcode. | ||
|