From 7a735c51b9d5169cc1e1767f2b878d6675667452 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20Bergstr=C3=B6m?= <david.bergstrom@liu.se>
Date: Wed, 14 Aug 2019 10:19:14 +0200
Subject: [PATCH] Add instructions on how to building in at LiU computers

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

diff --git a/README.md b/README.md
index 0dfcf54ed..8456e8ca2 100644
--- a/README.md
+++ b/README.md
@@ -57,6 +57,12 @@ 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:
@@ -64,7 +70,7 @@ First you need to make sure you got all the build dependencies:
 * cmake
 * Visual Studio 2017 or later (earlier might work, but untested)
 * git
-* python 3.6 or later (earlier might work, but untested)
+* python 3.7 or later (earlier might work, but untested)
 
 Now, you are ready to build the python library:
 
diff --git a/create-visual-studio-solution-ida-pc.bat b/create-visual-studio-solution-ida-pc.bat
new file mode 100644
index 000000000..753d3f4a7
--- /dev/null
+++ b/create-visual-studio-solution-ida-pc.bat
@@ -0,0 +1,3 @@
+mkdir build
+cd build
+"C:\Program Files\CMake\bin\cmake" .. -G "Visual Studio 15 Win64"
-- 
GitLab