annotate Resources/Orthanc/MinGW-W64-Toolchain64.cmake @ 22:c44013681a51

now using the Orthanc framework
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 20 Jul 2018 14:37:30 +0200
parents
children f6fe71ef20c1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22
c44013681a51 now using the Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
1 # the name of the target operating system
c44013681a51 now using the Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
2 set(CMAKE_SYSTEM_NAME Windows)
c44013681a51 now using the Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
3
c44013681a51 now using the Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
4 # which compilers to use for C and C++
c44013681a51 now using the Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
5 set(CMAKE_C_COMPILER x86_64-w64-mingw32-gcc)
c44013681a51 now using the Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
6 set(CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++)
c44013681a51 now using the Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
7 set(CMAKE_RC_COMPILER x86_64-w64-mingw32-windres)
c44013681a51 now using the Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
8
c44013681a51 now using the Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
9 # here is the target environment located
c44013681a51 now using the Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
10 set(CMAKE_FIND_ROOT_PATH /usr/i686-w64-mingw32)
c44013681a51 now using the Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
11
c44013681a51 now using the Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
12 # adjust the default behaviour of the FIND_XXX() commands:
c44013681a51 now using the Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
13 # search headers and libraries in the target environment, search
c44013681a51 now using the Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
14 # programs in the host environment
c44013681a51 now using the Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
15 set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
c44013681a51 now using the Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
16 set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
c44013681a51 now using the Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
17 set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)