Mercurial > hg > orthanc
annotate Resources/CMake/LibPngConfiguration.cmake @ 3038:53d583d2c775 db-changes
removing IDatabaseWrapper::LookupIdentifier()
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 19 Dec 2018 18:06:46 +0100 |
parents | 74d0953a3681 |
children | 0c2a8d5e0097 |
rev | line source |
---|---|
735 | 1 if (STATIC_BUILD OR NOT USE_SYSTEM_LIBPNG) |
2 SET(LIBPNG_SOURCES_DIR ${CMAKE_BINARY_DIR}/libpng-1.5.12) | |
2384 | 3 SET(LIBPNG_URL "http://www.orthanc-server.com/downloads/third-party/libpng-1.5.12.tar.gz") |
1537
fbf763bb1fa3
error detection in patches
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1472
diff
changeset
|
4 SET(LIBPNG_MD5 "8ea7f60347a306c5faf70b977fa80e28") |
fbf763bb1fa3
error detection in patches
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1472
diff
changeset
|
5 |
fbf763bb1fa3
error detection in patches
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1472
diff
changeset
|
6 DownloadPackage(${LIBPNG_MD5} ${LIBPNG_URL} "${LIBPNG_SOURCES_DIR}") |
735 | 7 |
8 include_directories( | |
9 ${LIBPNG_SOURCES_DIR} | |
10 ) | |
11 | |
12 configure_file( | |
13 ${LIBPNG_SOURCES_DIR}/scripts/pnglibconf.h.prebuilt | |
14 ${LIBPNG_SOURCES_DIR}/pnglibconf.h | |
1544 | 15 ) |
735 | 16 |
17 set(LIBPNG_SOURCES | |
18 #${LIBPNG_SOURCES_DIR}/example.c | |
19 ${LIBPNG_SOURCES_DIR}/png.c | |
20 ${LIBPNG_SOURCES_DIR}/pngerror.c | |
21 ${LIBPNG_SOURCES_DIR}/pngget.c | |
22 ${LIBPNG_SOURCES_DIR}/pngmem.c | |
23 ${LIBPNG_SOURCES_DIR}/pngpread.c | |
24 ${LIBPNG_SOURCES_DIR}/pngread.c | |
25 ${LIBPNG_SOURCES_DIR}/pngrio.c | |
26 ${LIBPNG_SOURCES_DIR}/pngrtran.c | |
27 ${LIBPNG_SOURCES_DIR}/pngrutil.c | |
28 ${LIBPNG_SOURCES_DIR}/pngset.c | |
29 #${LIBPNG_SOURCES_DIR}/pngtest.c | |
30 ${LIBPNG_SOURCES_DIR}/pngtrans.c | |
31 ${LIBPNG_SOURCES_DIR}/pngwio.c | |
32 ${LIBPNG_SOURCES_DIR}/pngwrite.c | |
33 ${LIBPNG_SOURCES_DIR}/pngwtran.c | |
34 ${LIBPNG_SOURCES_DIR}/pngwutil.c | |
35 ) | |
36 | |
37 #set_property( | |
38 # SOURCE ${LIBPNG_SOURCES} | |
39 # PROPERTY COMPILE_FLAGS -UHAVE_CONFIG_H) | |
40 | |
41 add_definitions( | |
42 -DPNG_NO_CONSOLE_IO=1 | |
43 -DPNG_NO_STDIO=1 | |
1472
237d83694d82
avoid public symbols of libpng
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1414
diff
changeset
|
44 # The following declaration avoids "__declspec(dllexport)" in |
237d83694d82
avoid public symbols of libpng
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1414
diff
changeset
|
45 # 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
|
46 -DPNG_IMPEXP= |
735 | 47 ) |
48 | |
2113
0108ac01fc8e
added source_group directives for MSVC
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1602
diff
changeset
|
49 source_group(ThirdParty\\libpng REGULAR_EXPRESSION ${LIBPNG_SOURCES_DIR}/.*) |
735 | 50 |
51 else() | |
52 include(FindPNG) | |
53 | |
54 if (NOT ${PNG_FOUND}) | |
1602 | 55 message(FATAL_ERROR "Unable to find libpng") |
735 | 56 endif() |
57 | |
58 include_directories(${PNG_INCLUDE_DIRS}) | |
59 link_libraries(${PNG_LIBRARIES}) | |
60 add_definitions(${PNG_DEFINITIONS}) | |
61 endif() |