From a4da1962f466bf406565a835effedf598efdbfc9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20Bergstr=C3=B6m?= <david.bergstrom@liu.se>
Date: Thu, 15 Aug 2019 16:27:55 +0200
Subject: [PATCH] One batch file fits all

---
 README.md                                | 8 ++------
 create-visual-studio-solution-ida-pc.bat | 3 ---
 create-visual-studio-solution.bat        | 2 +-
 3 files changed, 3 insertions(+), 10 deletions(-)
 delete mode 100644 create-visual-studio-solution-ida-pc.bat

diff --git a/README.md b/README.md
index 8456e8c..d560e69 100644
--- a/README.md
+++ b/README.md
@@ -57,12 +57,6 @@ if __name__ == "__main__":
     main()
 ```
 
-# How to build (Windows, LiU computers)
-
-Follow the general instructions for Windows, but at step 2 run the batch script called `create-visual-studio-solution-ida-pc.bat` instead of `create-visual-studio-solution.bat`.
-
-If you ever want to make any changes to the library, e.g. adding new features or making bug fixes, it's easier to fork the project before cloning the repository. For instructions on how to fork, see [the gitlab documentation](https://gitlab.liu.se/help/gitlab-basics/fork-project.md). 
-
 # How to build (Windows)
 
 First you need to make sure you got all the build dependencies:
@@ -72,6 +66,8 @@ First you need to make sure you got all the build dependencies:
 * git
 * python 3.7 or later (earlier might work, but untested)
 
+If you ever want to make any changes to the library, e.g. adding new features or making bug fixes, it's easier to fork the project before cloning the repository. For instructions on how to fork, see [the gitlab documentation](https://gitlab.liu.se/help/gitlab-basics/fork-project.md).
+
 Now, you are ready to build the python library:
 
 1. Open up a terminal, download the source code using the command: `git clone --recurse-submodules https://gitlab.ida.liu.se/course-starcraft-ai/pycommandcenter.git`
diff --git a/create-visual-studio-solution-ida-pc.bat b/create-visual-studio-solution-ida-pc.bat
deleted file mode 100644
index 753d3f4..0000000
--- a/create-visual-studio-solution-ida-pc.bat
+++ /dev/null
@@ -1,3 +0,0 @@
-mkdir build
-cd build
-"C:\Program Files\CMake\bin\cmake" .. -G "Visual Studio 15 Win64"
diff --git a/create-visual-studio-solution.bat b/create-visual-studio-solution.bat
index cd29bd6..753d3f4 100644
--- a/create-visual-studio-solution.bat
+++ b/create-visual-studio-solution.bat
@@ -1,3 +1,3 @@
 mkdir build
 cd build
-cmake .. -G "Visual Studio 15 Win64"
+"C:\Program Files\CMake\bin\cmake" .. -G "Visual Studio 15 Win64"
-- 
GitLab