Mercurial > hg > orthanc
annotate Resources/CMake/BoostConfiguration.cmake @ 1179:01c24da762da
fix issue #21
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 25 Sep 2014 08:36:40 +0200 |
parents | f16f5a8df647 |
children | 5a92665dee23 6784a119484d |
rev | line source |
---|---|
735 | 1 if (STATIC_BUILD OR NOT USE_SYSTEM_BOOST) |
2 set(BOOST_STATIC 1) | |
3 else() | |
4 include(FindBoost) | |
5 | |
6 set(BOOST_STATIC 0) | |
7 #set(Boost_DEBUG 1) | |
8 #set(Boost_USE_STATIC_LIBS ON) | |
9 | |
10 find_package(Boost | |
915
703bef350e89
Orthanc now relies entirely on boost::locale
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
890
diff
changeset
|
11 COMPONENTS filesystem thread system date_time regex locale) |
735 | 12 |
13 if (NOT Boost_FOUND) | |
14 message(FATAL_ERROR "Unable to locate Boost on this system") | |
15 endif() | |
16 | |
17 # Boost releases 1.44 through 1.47 supply both V2 and V3 filesystem | |
18 # http://www.boost.org/doc/libs/1_46_1/libs/filesystem/v3/doc/index.htm | |
19 if (${Boost_VERSION} LESS 104400) | |
20 add_definitions( | |
21 -DBOOST_HAS_FILESYSTEM_V3=0 | |
22 ) | |
23 else() | |
24 add_definitions( | |
25 -DBOOST_HAS_FILESYSTEM_V3=1 | |
26 -DBOOST_FILESYSTEM_VERSION=3 | |
27 ) | |
28 endif() | |
29 | |
30 #if (${Boost_VERSION} LESS 104800) | |
31 # boost::locale is only available from 1.48.00 | |
32 #message("Too old version of Boost (${Boost_LIB_VERSION}): Building the static version") | |
33 # set(BOOST_STATIC 1) | |
34 #endif() | |
35 | |
36 include_directories(${Boost_INCLUDE_DIRS}) | |
37 link_libraries(${Boost_LIBRARIES}) | |
38 endif() | |
39 | |
40 | |
41 if (BOOST_STATIC) | |
753
a6576b478553
upgrade to boost 1.55.0
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
735
diff
changeset
|
42 # Parameters for Boost 1.55.0 |
a6576b478553
upgrade to boost 1.55.0
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
735
diff
changeset
|
43 set(BOOST_NAME boost_1_55_0) |
a6576b478553
upgrade to boost 1.55.0
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
735
diff
changeset
|
44 set(BOOST_BCP_SUFFIX bcpdigest-0.7.4) |
a6576b478553
upgrade to boost 1.55.0
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
735
diff
changeset
|
45 set(BOOST_MD5 "409f7a0e4fb1f5659d07114f3133b67b") |
735 | 46 set(BOOST_FILESYSTEM_SOURCES_DIR "${BOOST_NAME}/libs/filesystem/src") |
47 | |
48 set(BOOST_SOURCES_DIR ${CMAKE_BINARY_DIR}/${BOOST_NAME}) | |
49 DownloadPackage( | |
50 "${BOOST_MD5}" | |
51 "http://www.montefiore.ulg.ac.be/~jodogne/Orthanc/ThirdPartyDownloads/${BOOST_NAME}_${BOOST_BCP_SUFFIX}.tar.gz" | |
52 "${BOOST_SOURCES_DIR}" | |
53 ) | |
54 | |
55 set(BOOST_SOURCES) | |
927 | 56 |
890 | 57 if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux" OR |
930 | 58 ${CMAKE_SYSTEM_NAME} STREQUAL "Darwin" OR |
890 | 59 ${CMAKE_SYSTEM_NAME} STREQUAL "kFreeBSD") |
735 | 60 list(APPEND BOOST_SOURCES |
61 ${BOOST_SOURCES_DIR}/libs/thread/src/pthread/once.cpp | |
62 ${BOOST_SOURCES_DIR}/libs/thread/src/pthread/thread.cpp | |
63 ) | |
64 add_definitions( | |
65 -DBOOST_LOCALE_WITH_ICONV=1 | |
66 ) | |
67 | |
68 if ("${CMAKE_SYSTEM_VERSION}" STREQUAL "LinuxStandardBase") | |
69 add_definitions(-DBOOST_HAS_SCHED_YIELD=1) | |
70 endif() | |
71 | |
72 elseif(${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
73 list(APPEND BOOST_SOURCES | |
74 ${BOOST_SOURCES_DIR}/libs/thread/src/win32/tss_dll.cpp | |
75 ${BOOST_SOURCES_DIR}/libs/thread/src/win32/thread.cpp | |
76 ${BOOST_SOURCES_DIR}/libs/thread/src/win32/tss_pe.cpp | |
77 ${BOOST_FILESYSTEM_SOURCES_DIR}/windows_file_codecvt.cpp | |
78 ) | |
1094
1b905ad6c913
Replace wconv by iconv under Windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
930
diff
changeset
|
79 |
1b905ad6c913
Replace wconv by iconv under Windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
930
diff
changeset
|
80 # Starting with release 0.8.2, Orthanc statically links against |
1b905ad6c913
Replace wconv by iconv under Windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
930
diff
changeset
|
81 # libiconv, even on Windows. Indeed, the "WCONV" library of |
1b905ad6c913
Replace wconv by iconv under Windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
930
diff
changeset
|
82 # Windows XP seems not to support properly several codepages |
1b905ad6c913
Replace wconv by iconv under Windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
930
diff
changeset
|
83 # (notably "Latin3", "Hebrew", and "Arabic"). |
1b905ad6c913
Replace wconv by iconv under Windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
930
diff
changeset
|
84 |
1b905ad6c913
Replace wconv by iconv under Windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
930
diff
changeset
|
85 # add_definitions(-DBOOST_LOCALE_WITH_WCONV=1) |
1b905ad6c913
Replace wconv by iconv under Windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
930
diff
changeset
|
86 include(${ORTHANC_ROOT}/Resources/CMake/LibIconvConfiguration.cmake) |
927 | 87 |
735 | 88 else() |
89 message(FATAL_ERROR "Support your platform here") | |
90 endif() | |
91 | |
927 | 92 if (${CMAKE_SYSTEM_NAME} STREQUAL "Darwin") |
93 list(APPEND BOOST_SOURCES | |
94 ${BOOST_SOURCES_DIR}/libs/filesystem/src/utf8_codecvt_facet.cpp | |
95 ) | |
96 endif() | |
97 | |
1096
44f139b62108
patch for XCode 5.1
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1094
diff
changeset
|
98 if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") |
44f139b62108
patch for XCode 5.1
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1094
diff
changeset
|
99 # This is a patch to compile Boost 1.55.0 with Clang 3.4 and later |
44f139b62108
patch for XCode 5.1
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1094
diff
changeset
|
100 # (including XCode 5.1). Fixes issue 14 of Orthanc. |
44f139b62108
patch for XCode 5.1
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1094
diff
changeset
|
101 # https://trac.macports.org/ticket/42282#comment:10 |
44f139b62108
patch for XCode 5.1
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1094
diff
changeset
|
102 execute_process( |
44f139b62108
patch for XCode 5.1
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1094
diff
changeset
|
103 COMMAND patch -p0 -i ${ORTHANC_ROOT}/Resources/Patches/boost-1.55.0-clang-atomic.patch |
1097 | 104 WORKING_DIRECTORY ${BOOST_SOURCES_DIR} |
1096
44f139b62108
patch for XCode 5.1
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1094
diff
changeset
|
105 ) |
44f139b62108
patch for XCode 5.1
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1094
diff
changeset
|
106 endif() |
44f139b62108
patch for XCode 5.1
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1094
diff
changeset
|
107 |
735 | 108 aux_source_directory(${BOOST_SOURCES_DIR}/libs/regex/src BOOST_REGEX_SOURCES) |
109 | |
110 list(APPEND BOOST_SOURCES | |
111 ${BOOST_REGEX_SOURCES} | |
112 ${BOOST_SOURCES_DIR}/libs/date_time/src/gregorian/greg_month.cpp | |
113 ${BOOST_FILESYSTEM_SOURCES_DIR}/codecvt_error_category.cpp | |
114 ${BOOST_FILESYSTEM_SOURCES_DIR}/operations.cpp | |
115 ${BOOST_FILESYSTEM_SOURCES_DIR}/path.cpp | |
116 ${BOOST_FILESYSTEM_SOURCES_DIR}/path_traits.cpp | |
117 ${BOOST_SOURCES_DIR}/libs/locale/src/encoding/codepage.cpp | |
118 ${BOOST_SOURCES_DIR}/libs/system/src/error_code.cpp | |
119 ) | |
120 | |
121 list(APPEND THIRD_PARTY_SOURCES ${BOOST_SOURCES}) | |
122 | |
123 add_definitions( | |
124 # Static build of Boost | |
125 -DBOOST_ALL_NO_LIB | |
126 -DBOOST_ALL_NOLIB | |
127 -DBOOST_DATE_TIME_NO_LIB | |
128 -DBOOST_THREAD_BUILD_LIB | |
129 -DBOOST_PROGRAM_OPTIONS_NO_LIB | |
130 -DBOOST_REGEX_NO_LIB | |
131 -DBOOST_SYSTEM_NO_LIB | |
132 -DBOOST_LOCALE_NO_LIB | |
133 -DBOOST_HAS_LOCALE=1 | |
134 -DBOOST_HAS_FILESYSTEM_V3=1 | |
135 ) | |
136 | |
137 if (${CMAKE_COMPILER_IS_GNUCXX}) | |
138 add_definitions(-isystem ${BOOST_SOURCES_DIR}) | |
139 endif() | |
140 | |
141 include_directories( | |
142 ${BOOST_SOURCES_DIR} | |
143 ) | |
144 | |
145 source_group(ThirdParty\\Boost REGULAR_EXPRESSION ${BOOST_SOURCES_DIR}/.*) | |
146 else() | |
147 add_definitions( | |
915
703bef350e89
Orthanc now relies entirely on boost::locale
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
890
diff
changeset
|
148 -DBOOST_HAS_LOCALE=1 |
735 | 149 ) |
150 endif() |