Mercurial > hg > orthanc-stone
annotate Resources/CMake/OrthancStoneParameters.cmake @ 338:b3b3fa0e3689 am-2
BitmapStack
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 19 Oct 2018 12:50:38 +0200 |
parents | b04b13810540 |
children | b70e9be013e4 |
rev | line source |
---|---|
115 | 1 # Stone of Orthanc |
2 # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
3 # Department, University Hospital of Liege, Belgium | |
135
e2fe9352f240
upgrade to year 2018
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
128
diff
changeset
|
4 # Copyright (C) 2017-2018 Osimis S.A., Belgium |
115 | 5 # |
6 # This program is free software: you can redistribute it and/or | |
7 # modify it under the terms of the GNU Affero General Public License | |
8 # as published by the Free Software Foundation, either version 3 of | |
9 # the License, or (at your option) any later version. | |
10 # | |
11 # This program is distributed in the hope that it will be useful, but | |
12 # WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 # Affero General Public License for more details. | |
15 # | |
16 # You should have received a copy of the GNU Affero General Public License | |
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
18 | |
19 | |
20 | |
21 ##################################################################### | |
22 ## Import the parameters of the Orthanc Framework | |
23 ##################################################################### | |
24 | |
212
5412adf19980
resort to OrthancFramework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
200
diff
changeset
|
25 include(${CMAKE_CURRENT_LIST_DIR}/../../Resources/Orthanc/DownloadOrthancFramework.cmake) |
5412adf19980
resort to OrthancFramework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
200
diff
changeset
|
26 include(${ORTHANC_ROOT}/Resources/CMake/OrthancFrameworkParameters.cmake) |
115 | 27 |
338 | 28 set(ENABLE_DCMTK OFF) |
212
5412adf19980
resort to OrthancFramework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
200
diff
changeset
|
29 set(ENABLE_GOOGLE_TEST ON) |
5412adf19980
resort to OrthancFramework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
200
diff
changeset
|
30 set(ENABLE_SQLITE OFF) |
256
86ccff58f344
fix build if dcmtk is enabled
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
212
diff
changeset
|
31 set(ENABLE_JPEG ON) |
86ccff58f344
fix build if dcmtk is enabled
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
212
diff
changeset
|
32 set(ENABLE_PNG ON) |
86ccff58f344
fix build if dcmtk is enabled
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
212
diff
changeset
|
33 set(ENABLE_ZLIB ON) |
86ccff58f344
fix build if dcmtk is enabled
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
212
diff
changeset
|
34 set(HAS_EMBEDDED_RESOURCES ON) |
115 | 35 |
36 | |
37 ##################################################################### | |
38 ## CMake parameters tunable by the user | |
39 ##################################################################### | |
40 | |
41 # Advanced parameters to fine-tune linking against system libraries | |
200
03afbee0cc7b
integration of Orthanc core into Stone
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
135
diff
changeset
|
42 set(USE_SYSTEM_CAIRO ON CACHE BOOL "Use the system version of Cairo") |
03afbee0cc7b
integration of Orthanc core into Stone
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
135
diff
changeset
|
43 set(USE_SYSTEM_PIXMAN ON CACHE BOOL "Use the system version of Pixman") |
03afbee0cc7b
integration of Orthanc core into Stone
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
135
diff
changeset
|
44 set(USE_SYSTEM_SDL ON CACHE BOOL "Use the system version of SDL2") |
115 | 45 |
46 | |
47 ##################################################################### | |
48 ## Internal CMake parameters to enable the optional subcomponents of | |
49 ## the Stone of Orthanc | |
50 ##################################################################### | |
51 |