changeset 707:d1feb89ea742

Added sample command line for Visual Studio 2008
author Benjamin Golinvaux <bgo@osimis.io>
date Mon, 20 May 2019 11:03:50 +0200
parents ef07304d4423
children 51976977d2d3 f2ee003ba955
files README.md
diffstat 1 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/README.md	Mon May 20 11:03:36 2019 +0200
+++ b/README.md	Mon May 20 11:03:50 2019 +0200
@@ -241,10 +241,18 @@
 How to build the newest (2019-04-29) SDL samples under Windows, *inside* a
 folder that is sibling to the orthanc-stone folder: 
 
+**Visual Studio 2017 (v140) **
+
 ```
 cmake -G "Visual Studio 15 2017 Win64" -DMSVC_MULTIPLE_PROCESSES=ON -DENABLE_OPENGL=ON -DSTATIC_BUILD=ON -DOPENSSL_NO_CAPIENG=ON -DORTHANC_FRAMEWORK_SOURCE=path -DORTHANC_FRAMEWORK_ROOT="$($pwd)\..\orthanc" -DALLOW_DOWNLOADS=ON -DENABLE_SDL=ON ../orthanc-stone/Samples/Sdl
 ```
 
+**Visual Studio 2008 (v90) **
+
+```
+cmake -G "Visual Studio 9 2008" -DUSE_LEGACY_JSONCPP=ON -DENABLE_OPENGL=ON -DSTATIC_BUILD=ON -DOPENSSL_NO_CAPIENG=ON -DORTHANC_FRAMEWORK_SOURCE=path -DORTHANC_FRAMEWORK_ROOT="$($pwd)\..\orthanc" -DALLOW_DOWNLOADS=ON -DENABLE_SDL=ON ../orthanc-stone/Samples/Sdl
+```
+
 And under Ubuntu (note the /mnt/c/osi/dev/orthanc folder):
 ```
 cmake -G "Ninja" -DENABLE_OPENGL=ON -DSTATIC_BUILD=OFF -DOPENSSL_NO_CAPIENG=ON -DORTHANC_FRAMEWORK_SOURCE=path -DORTHANC_FRAMEWORK_ROOT="/mnt/c/osi/dev/orthanc" -DALLOW_DOWNLOADS=ON -DENABLE_SDL=ON ../orthanc-stone/Samples/Sdl