summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-05-18 21:32:56 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2016-05-18 21:32:56 +0200
commit489c5d76cfe95a97542dfeaa6d8b19cd9100919a (patch)
tree31a7082f5847f3bd21af1f2aa5a7d1eb68d188db /README.md
parent7a3b695db70810595ae17d9d753c3b926aa738c0 (diff)
Merged in latest changes from 0.7.1 release
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/README.md b/README.md
index 869ef636..e4564c26 100644
--- a/README.md
+++ b/README.md
@@ -60,7 +60,7 @@ Furthermore, to build the (optional) correctness and performance tests, another
- BLIS
- Accelerate
-An example of an out-of-source build (starting from the root of the CLBlast folder):
+An example of an out-of-source build using a command-line compiler and make (starting from the root of the CLBlast folder):
mkdir build
cd build
@@ -68,6 +68,12 @@ An example of an out-of-source build (starting from the root of the CLBlast fold
make
sudo make install
+When using Visual Studio, the project-files can be generated as follows:
+
+ mkdir build
+ cd build
+ cmake -G "Visual Studio 14 Win64" ..
+
A custom installation folder can be specified when calling CMake:
cmake -DCMAKE_INSTALL_PREFIX=/path/to/install/directory ..