2017-05-17 17:23:21 +08:00
|
|
|
# Common Ambient Variables:
|
|
|
|
# CURRENT_BUILDTREES_DIR = ${VCPKG_ROOT_DIR}\buildtrees\${PORT}
|
|
|
|
# CURRENT_PACKAGES_DIR = ${VCPKG_ROOT_DIR}\packages\${PORT}_${TARGET_TRIPLET}
|
|
|
|
# CURRENT_PORT DIR = ${VCPKG_ROOT_DIR}\ports\${PORT}
|
|
|
|
# PORT = current port name (zlib, etc)
|
|
|
|
# TARGET_TRIPLET = current triplet (x86-windows, x64-windows-static, etc)
|
|
|
|
# VCPKG_CRT_LINKAGE = C runtime linkage type (static, dynamic)
|
|
|
|
# VCPKG_LIBRARY_LINKAGE = target library linkage type (static, dynamic)
|
|
|
|
# VCPKG_ROOT_DIR = <C:\path\to\current\vcpkg>
|
|
|
|
# VCPKG_TARGET_ARCHITECTURE = target architecture (x64, x86, arm)
|
|
|
|
#
|
|
|
|
|
2017-03-20 01:10:43 +08:00
|
|
|
include(vcpkg_common_functions)
|
2017-05-17 20:36:03 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO malaterre/GDCM
|
2018-06-13 01:32:58 +08:00
|
|
|
REF v2.8.7
|
|
|
|
SHA512 06e58a201d2bf59273cd871d7fc7b858eaa1b02badcc1cdbd99aca6ff7d6b0b0199f2fe7ead935ff1edb9403d594e9d73ffaf4e388705e96c76d7eefa0b6c2ec
|
2017-03-20 01:10:43 +08:00
|
|
|
)
|
2017-05-17 17:23:21 +08:00
|
|
|
|
2017-03-20 01:10:43 +08:00
|
|
|
vcpkg_apply_patches(
|
|
|
|
SOURCE_PATH ${SOURCE_PATH}
|
2017-05-17 17:23:21 +08:00
|
|
|
PATCHES
|
2017-10-21 18:28:27 +08:00
|
|
|
${CMAKE_CURRENT_LIST_DIR}/socketxx.patch
|
2017-03-20 01:10:43 +08:00
|
|
|
)
|
2017-05-17 17:23:21 +08:00
|
|
|
|
|
|
|
|
2017-03-20 01:37:58 +08:00
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
|
|
|
|
set(GDCM_BUILD_SHARED_LIBS ON)
|
|
|
|
else()
|
|
|
|
set(GDCM_BUILD_SHARED_LIBS OFF)
|
|
|
|
endif()
|
2017-05-17 17:23:21 +08:00
|
|
|
|
2017-03-20 01:10:43 +08:00
|
|
|
vcpkg_configure_cmake(
|
|
|
|
SOURCE_PATH ${SOURCE_PATH}
|
2017-05-17 17:23:21 +08:00
|
|
|
PREFER_NINJA # Disable this option if project cannot be built with Ninja
|
2017-03-20 01:10:43 +08:00
|
|
|
OPTIONS
|
|
|
|
-DGDCM_BUILD_DOCBOOK_MANPAGES=OFF
|
2017-03-20 19:13:46 +08:00
|
|
|
-DGDCM_BUILD_SHARED_LIBS=${GDCM_BUILD_SHARED_LIBS}
|
2017-05-17 17:23:21 +08:00
|
|
|
-DGDCM_INSTALL_INCLUDE_DIR=include
|
2017-03-20 01:10:43 +08:00
|
|
|
-DGDCM_USE_SYSTEM_EXPAT=ON
|
2017-03-20 19:13:46 +08:00
|
|
|
-DGDCM_USE_SYSTEM_ZLIB=ON
|
2017-03-20 01:10:43 +08:00
|
|
|
${ADDITIONAL_OPTIONS}
|
|
|
|
)
|
|
|
|
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
|
2017-03-22 08:07:14 +08:00
|
|
|
file(REMOVE_RECURSE
|
2017-03-20 01:10:43 +08:00
|
|
|
${CURRENT_PACKAGES_DIR}/debug/include
|
|
|
|
${CURRENT_PACKAGES_DIR}/debug/share
|
|
|
|
)
|
|
|
|
|
2017-03-22 08:07:14 +08:00
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL static)
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin ${CURRENT_PACKAGES_DIR}/debug/bin)
|
|
|
|
endif()
|
|
|
|
|
2017-03-20 01:10:43 +08:00
|
|
|
# Handle copyright
|
|
|
|
file(INSTALL ${SOURCE_PATH}/Copyright.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/gdcm2 RENAME copyright)
|
|
|
|
|
|
|
|
vcpkg_copy_pdbs()
|