Mercurial > hg > orthanc
annotate Plugins/Samples/Common/OrthancPlugins.cmake @ 3962:d30eb4ae5bb6
trying a fix for msvc2008
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 20 May 2020 20:53:59 +0200 |
parents | 6fbc2f97de3a |
children |
rev | line source |
---|---|
3373
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
1 set(ORTHANC_ROOT ${SAMPLES_ROOT}/../..) |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
2 include(CheckIncludeFiles) |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
3 include(CheckIncludeFileCXX) |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
4 include(CheckLibraryExists) |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
5 include(FindPythonInterp) |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
6 include(${ORTHANC_ROOT}/Resources/CMake/AutoGeneratedCode.cmake) |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
7 include(${ORTHANC_ROOT}/Resources/CMake/DownloadPackage.cmake) |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
8 include(${ORTHANC_ROOT}/Resources/CMake/Compiler.cmake) |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
9 |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
10 |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
11 if (CMAKE_COMPILER_IS_GNUCXX) |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
12 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -pedantic") |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
13 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -pedantic") |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
14 endif() |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
15 |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
16 |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
17 if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux") |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
18 # Linking with "pthread" is necessary, otherwise the software crashes |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
19 # http://sourceware.org/bugzilla/show_bug.cgi?id=10652#c17 |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
20 link_libraries(dl rt pthread) |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
21 endif() |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
22 |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
23 include_directories(${SAMPLES_ROOT}/../Include/) |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
24 |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
25 if (MSVC) |
3572
6fbc2f97de3a
Fixed sample plugin cmake files for newer VS versions
Benjamin Golinvaux <bgo@osimis.io>
parents:
3373
diff
changeset
|
26 if (MSVC_VERSION LESS 1600) |
6fbc2f97de3a
Fixed sample plugin cmake files for newer VS versions
Benjamin Golinvaux <bgo@osimis.io>
parents:
3373
diff
changeset
|
27 # Starting with Visual Studio >= 2010 (i.e. macro _MSC_VER >= |
6fbc2f97de3a
Fixed sample plugin cmake files for newer VS versions
Benjamin Golinvaux <bgo@osimis.io>
parents:
3373
diff
changeset
|
28 # 1600), Microsoft ships a standard-compliant <stdint.h> |
6fbc2f97de3a
Fixed sample plugin cmake files for newer VS versions
Benjamin Golinvaux <bgo@osimis.io>
parents:
3373
diff
changeset
|
29 # header. For earlier versions of Visual Studio, give access to a |
6fbc2f97de3a
Fixed sample plugin cmake files for newer VS versions
Benjamin Golinvaux <bgo@osimis.io>
parents:
3373
diff
changeset
|
30 # compatibility header. |
6fbc2f97de3a
Fixed sample plugin cmake files for newer VS versions
Benjamin Golinvaux <bgo@osimis.io>
parents:
3373
diff
changeset
|
31 # http://stackoverflow.com/a/70630/881731 |
6fbc2f97de3a
Fixed sample plugin cmake files for newer VS versions
Benjamin Golinvaux <bgo@osimis.io>
parents:
3373
diff
changeset
|
32 # https://en.wikibooks.org/wiki/C_Programming/C_Reference/stdint.h#External_links |
6fbc2f97de3a
Fixed sample plugin cmake files for newer VS versions
Benjamin Golinvaux <bgo@osimis.io>
parents:
3373
diff
changeset
|
33 include_directories(${SAMPLES_ROOT}/../../Resources/ThirdParty/VisualStudio/) |
6fbc2f97de3a
Fixed sample plugin cmake files for newer VS versions
Benjamin Golinvaux <bgo@osimis.io>
parents:
3373
diff
changeset
|
34 endif() |
3373
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
35 endif() |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
36 |
4a8e8a96b233
Fixed CRLF to LF in various files (found through grepping the source tree)
Benjamin Golinvaux <bgo@osimis.io>
parents:
2205
diff
changeset
|
37 add_definitions(-DHAS_ORTHANC_EXCEPTION=0) |