comparison Samples/Sdl/CMakeLists.txt @ 604:86dfde451f4c

Fixed typo + added flags for MSVC in Stone Sample
author Benjamin Golinvaux <bgo@osimis.io>
date Mon, 29 Apr 2019 15:24:47 +0200
parents 6129b1e5ba42
children 357e744c56cc
comparison
equal deleted inserted replaced
603:70992b38aa8a 604:86dfde451f4c
1 cmake_minimum_required(VERSION 2.8.3) 1 cmake_minimum_required(VERSION 2.8.3)
2 2
3 if(MSVC)
4 add_definitions(/MP)
5 if (CMAKE_BUILD_TYPE MATCHES DEBUG)
6 add_definitions(/JMC)
7 endif()
8 endif()
3 9
4 ##################################################################### 10 #####################################################################
5 ## Configuration of the Orthanc framework 11 ## Configuration of the Orthanc framework
6 ##################################################################### 12 #####################################################################
7 13