mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 13:19:23 +08:00
885ca2ce6c
* use d suffix for debug libs, improve compatibility with official FindJPEG.cmake (cmake 3.13) * [libjpeg] fix also non-static case * [libjpeg-turbo] bump version * [libjpeg-turbo] fixes for regression on Linux/macOS * [libjpeg-turbo] fix regression in qt5-base * [linkjpeg-turbo] force CI test
51 lines
1.8 KiB
CMake
51 lines
1.8 KiB
CMake
include(vcpkg_common_functions)
|
|
|
|
if(EXISTS "${CURRENT_INSTALLED_DIR}/include/openjpeg.h")
|
|
message(FATAL_ERROR "Can't build VXL with non built-in OpenJpeg in current version. Please remove OpenJpeg, and try install VXL again.")
|
|
endif()
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO vxl/vxl
|
|
REF v1.18.0
|
|
SHA512 6666d647b2e7010b91cb0b05016b5f49ae46d198f6bd160fe13fc09bc674eff5b937331fa11d81a8496473968b63452d950eee4fc2512152af57304a14bed63f
|
|
HEAD_REF master
|
|
)
|
|
|
|
set(USE_WIN_WCHAR_T OFF)
|
|
if(NOT VCPKG_CMAKE_SYSTEM_NAME OR VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
|
set(USE_WIN_WCHAR_T ON)
|
|
endif()
|
|
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
PREFER_NINJA
|
|
OPTIONS
|
|
-DBUILD_EXAMPLES=OFF
|
|
-DBUILD_TESTING=OFF
|
|
-DVXL_FORCE_V3P_BZLIB2=OFF
|
|
-DVXL_USING_NATIVE_BZLIB2=TRUE # for disable build built-in bzip2 (v3p/bzlib/CMakeLists.txt#L10-L26)
|
|
-DVXL_FORCE_V3P_CLIPPER=ON # TODO : need add clipper port to turn off
|
|
-DVXL_FORCE_V3P_DCMTK=OFF
|
|
-DVXL_FORCE_V3P_GEOTIFF=OFF
|
|
-DVXL_FORCE_V3P_J2K=OFF
|
|
-DVXL_FORCE_V3P_JPEG=OFF
|
|
-DVXL_FORCE_V3P_OPENJPEG2=ON # TODO : need fix compile error when using openjpeg port to turn off
|
|
-DVXL_FORCE_V3P_PNG=OFF
|
|
-DVXL_FORCE_V3P_TIFF=OFF
|
|
-DVXL_FORCE_V3P_ZLIB=OFF
|
|
-DVXL_USE_DCMTK=OFF # TODO : need fix dcmtk support to turn on
|
|
-DXVL_USE_GEOTIFF=ON
|
|
-DVXL_USE_WIN_WCHAR_T=${USE_WIN_WCHAR_T}
|
|
)
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH share/vxl/cmake)
|
|
vcpkg_copy_pdbs()
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
|
|
|
|
file(INSTALL ${SOURCE_PATH}/core/vxl_copyright.h DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|
|
# |