Mercurial > hg > orthanc-stone
annotate Applications/Samples/Sdl/BoostExtendedConfiguration.cmake @ 1896:b3c08e607d9f
simplified signature of DicomStructureSet::ProjectStructure()
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 26 Jan 2022 17:19:37 +0100 |
parents | 7053b8a0aaec |
children | 07964689cb0b |
rev | line source |
---|---|
47 | 1 # Stone of Orthanc |
2 # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
3 # Department, University Hospital of Liege, Belgium | |
1871
7053b8a0aaec
upgrade to year 2022
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1870
diff
changeset
|
4 # Copyright (C) 2017-2022 Osimis S.A., Belgium |
7053b8a0aaec
upgrade to year 2022
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1870
diff
changeset
|
5 # Copyright (C) 2021-2022 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
47 | 6 # |
7 # This program is free software: you can redistribute it and/or | |
8 # modify it under the terms of the GNU Affero General Public License | |
9 # as published by the Free Software Foundation, either version 3 of | |
10 # the License, or (at your option) any later version. | |
11 # | |
12 # This program is distributed in the hope that it will be useful, but | |
13 # WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 # Affero General Public License for more details. | |
1597
f9e3a9c21c0f
removed annoying whitespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1538
diff
changeset
|
16 # |
47 | 17 # You should have received a copy of the GNU Affero General Public License |
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 | |
20 | |
1467 | 21 if (STATIC_BUILD OR NOT USE_SYSTEM_BOOST) |
1473
9cbc6d21ae89
SeriesThumbnailsLoader::SuccessMessage::DecodeImage(), fix static builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1467
diff
changeset
|
22 set(BOOST_EXTENDED_SOURCES |
0 | 23 ${BOOST_SOURCES_DIR}/libs/program_options/src/cmdline.cpp |
24 ${BOOST_SOURCES_DIR}/libs/program_options/src/config_file.cpp | |
25 ${BOOST_SOURCES_DIR}/libs/program_options/src/convert.cpp | |
26 ${BOOST_SOURCES_DIR}/libs/program_options/src/options_description.cpp | |
27 ${BOOST_SOURCES_DIR}/libs/program_options/src/parsers.cpp | |
28 ${BOOST_SOURCES_DIR}/libs/program_options/src/positional_options.cpp | |
29 ${BOOST_SOURCES_DIR}/libs/program_options/src/split.cpp | |
30 ${BOOST_SOURCES_DIR}/libs/program_options/src/utf8_codecvt_facet.cpp | |
31 ${BOOST_SOURCES_DIR}/libs/program_options/src/value_semantic.cpp | |
32 ${BOOST_SOURCES_DIR}/libs/program_options/src/variables_map.cpp | |
445 | 33 ${BOOST_SOURCES_DIR}/libs/chrono/src/thread_clock.cpp |
34 ${BOOST_SOURCES_DIR}/libs/chrono/src/chrono.cpp | |
35 ${BOOST_SOURCES_DIR}/libs/chrono/src/process_cpu_clocks.cpp | |
0 | 36 #${BOOST_SOURCES_DIR}/libs/program_options/src/winmain.cpp |
37 ) | |
38 add_definitions(-DBOOST_PROGRAM_OPTIONS_NO_LIB) | |
1465
70b0b1dc1de4
removed useless include_directories
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1425
diff
changeset
|
39 else() |
1473
9cbc6d21ae89
SeriesThumbnailsLoader::SuccessMessage::DecodeImage(), fix static builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1467
diff
changeset
|
40 link_libraries(boost_program_options) |
0 | 41 endif() |