# HG changeset patch # User Sebastien Jodogne # Date 1574253368 -3600 # Node ID 57b38e609d3285fd2b231e9378d76ea785172b99 # Parent b1c5da7899048d874a7b63e59a584b83c2559f0d# Parent ab3f3bb1bdb499875c32cf0a98bde29e4bbd207f integration mainline->broker diff -r b1c5da789904 -r 57b38e609d32 README.md --- a/README.md Wed Nov 20 13:28:18 2019 +0100 +++ b/README.md Wed Nov 20 13:36:08 2019 +0100 @@ -146,6 +146,15 @@ cmake -G Ninja -DSTATIC_BUILD=ON -DOPENSSL_NO_CAPIENG=ON -DORTHANC_FRAMEWORK_SOURCE=path -DORTHANC_FRAMEWORK_ROOT="$($pwd)\..\orthanc" -DALLOW_DOWNLOADS=ON -DENABLE_SDL=ON ../orthanc-stone/Applications/Samples/ ``` +**Ninja generator with static SDL build (bash/zsh script)** + +``` +# Please yourself one level above the orthanc-stone and orthanc folders +if( -not (test-path stone_build_sdl)) { mkdir stone_build_sdl } +cd stone_build_sdl +cmake -G Ninja -DSTATIC_BUILD=ON -DOPENSSL_NO_CAPIENG=ON -DORTHANC_FRAMEWORK_SOURCE=path -DORTHANC_FRAMEWORK_ROOT="`pwd`/../orthanc" -DALLOW_DOWNLOADS=ON -DENABLE_SDL=ON ../orthanc-stone/Applications/Samples/ +``` + **Visual Studio 2017 generator with static SDL build (pwsh script)** ```