Mercurial > hg > orthanc
annotate OrthancFramework/Resources/CMake/LibPngConfiguration.cmake @ 5638:4535194cbb8a
document TLS 1.3 in SslMinimumProtocolVersion
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Wed, 22 May 2024 16:06:30 +0200 |
parents | 0a74634073c0 |
children | f7adfb22e20e |
rev | line source |
---|---|
4120
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
1 # Orthanc - A Lightweight, RESTful DICOM Store |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
2 # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
3 # Department, University Hospital of Liege, Belgium |
5485
48b8dae6dc77
upgrade to year 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5434
diff
changeset
|
4 # Copyright (C) 2017-2024 Osimis S.A., Belgium |
48b8dae6dc77
upgrade to year 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5434
diff
changeset
|
5 # Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
4120
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
6 # |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
7 # This program is free software: you can redistribute it and/or |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
8 # modify it under the terms of the GNU Lesser General Public License |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
9 # as published by the Free Software Foundation, either version 3 of |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
10 # the License, or (at your option) any later version. |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
11 # |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
12 # This program is distributed in the hope that it will be useful, but |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
13 # WITHOUT ANY WARRANTY; without even the implied warranty of |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
15 # Lesser General Public License for more details. |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
16 # |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
17 # You should have received a copy of the GNU Lesser General Public |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
18 # License along with this program. If not, see |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
19 # <http://www.gnu.org/licenses/>. |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
20 |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
21 |
735 | 22 if (STATIC_BUILD OR NOT USE_SYSTEM_LIBPNG) |
5506
0446fa29de49
upgraded to libpng 1.6.40
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5485
diff
changeset
|
23 SET(LIBPNG_SOURCES_DIR ${CMAKE_BINARY_DIR}/libpng-1.6.40) |
0446fa29de49
upgraded to libpng 1.6.40
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5485
diff
changeset
|
24 SET(LIBPNG_URL "https://orthanc.uclouvain.be/downloads/third-party-downloads/libpng-1.6.40.tar.gz") |
0446fa29de49
upgraded to libpng 1.6.40
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5485
diff
changeset
|
25 SET(LIBPNG_MD5 "ec4b597c3a9b1f8d2826575f530367b7") |
1537
fbf763bb1fa3
error detection in patches
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1472
diff
changeset
|
26 |
fbf763bb1fa3
error detection in patches
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1472
diff
changeset
|
27 DownloadPackage(${LIBPNG_MD5} ${LIBPNG_URL} "${LIBPNG_SOURCES_DIR}") |
735 | 28 |
29 include_directories( | |
30 ${LIBPNG_SOURCES_DIR} | |
31 ) | |
32 | |
33 configure_file( | |
34 ${LIBPNG_SOURCES_DIR}/scripts/pnglibconf.h.prebuilt | |
35 ${LIBPNG_SOURCES_DIR}/pnglibconf.h | |
1544 | 36 ) |
735 | 37 |
38 set(LIBPNG_SOURCES | |
39 #${LIBPNG_SOURCES_DIR}/example.c | |
40 ${LIBPNG_SOURCES_DIR}/png.c | |
41 ${LIBPNG_SOURCES_DIR}/pngerror.c | |
42 ${LIBPNG_SOURCES_DIR}/pngget.c | |
43 ${LIBPNG_SOURCES_DIR}/pngmem.c | |
44 ${LIBPNG_SOURCES_DIR}/pngpread.c | |
45 ${LIBPNG_SOURCES_DIR}/pngread.c | |
46 ${LIBPNG_SOURCES_DIR}/pngrio.c | |
47 ${LIBPNG_SOURCES_DIR}/pngrtran.c | |
48 ${LIBPNG_SOURCES_DIR}/pngrutil.c | |
49 ${LIBPNG_SOURCES_DIR}/pngset.c | |
50 #${LIBPNG_SOURCES_DIR}/pngtest.c | |
51 ${LIBPNG_SOURCES_DIR}/pngtrans.c | |
52 ${LIBPNG_SOURCES_DIR}/pngwio.c | |
53 ${LIBPNG_SOURCES_DIR}/pngwrite.c | |
54 ${LIBPNG_SOURCES_DIR}/pngwtran.c | |
55 ${LIBPNG_SOURCES_DIR}/pngwutil.c | |
56 ) | |
57 | |
58 add_definitions( | |
3285
3f7d4b735f95
upgrade to libpng 1.6.36
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3133
diff
changeset
|
59 -DPNG_NO_CONFIG_H=1 |
735 | 60 -DPNG_NO_CONSOLE_IO=1 |
61 -DPNG_NO_STDIO=1 | |
4969 | 62 # disable ARM neon optimization for Apple M1 builds (TODO: try adding arm/filter_neon_intrinscis.c ... ) |
63 -DPNG_ARM_NEON_OPT=0 | |
1472
237d83694d82
avoid public symbols of libpng
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1414
diff
changeset
|
64 # The following declaration avoids "__declspec(dllexport)" in |
237d83694d82
avoid public symbols of libpng
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1414
diff
changeset
|
65 # libpng to prevent publicly exposing its symbols by the DLLs |
237d83694d82
avoid public symbols of libpng
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1414
diff
changeset
|
66 -DPNG_IMPEXP= |
735 | 67 ) |
68 | |
2113
0108ac01fc8e
added source_group directives for MSVC
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1602
diff
changeset
|
69 source_group(ThirdParty\\libpng REGULAR_EXPRESSION ${LIBPNG_SOURCES_DIR}/.*) |
735 | 70 |
71 else() | |
72 include(FindPNG) | |
73 | |
5121
77e20ce39d6f
removed some warnings for recent versions of CMake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4969
diff
changeset
|
74 if (NOT PNG_FOUND) |
1602 | 75 message(FATAL_ERROR "Unable to find libpng") |
735 | 76 endif() |
77 | |
78 include_directories(${PNG_INCLUDE_DIRS}) | |
79 link_libraries(${PNG_LIBRARIES}) | |
80 add_definitions(${PNG_DEFINITIONS}) | |
81 endif() |