forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b90bc0
commit 868697d
Showing
2 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Source: itk | ||
Version: 4.11.0 | ||
Description: Insight Segmentation and Registration Toolkit (ITK) is used for image processing and analysis. | ||
Build-Depends: libjpeg-turbo, zlib, libpng, tiff, expat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
include(vcpkg_common_functions) | ||
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src) | ||
vcpkg_download_distfile(ARCHIVE | ||
URLS "https://github.com/dzenanz/ITK/releases/download/v4.12rc02/ITK_VCPKG.zip" | ||
FILENAME "ITK-Test.zip" | ||
SHA512 6283381b2a615ca40ddd05fa4e45a3dbc32ed6dd6bc02e0bb9462ef07762507970d4b56f0fdf8098d23361e52af9afec670a41acd33adb44a7b3cb7d6501bc65 | ||
) | ||
vcpkg_extract_source_archive(${ARCHIVE}) | ||
|
||
# directory path length needs to be shorter than 50 characters | ||
# file(RENAME ${CURRENT_BUILDTREES_DIR}/src/InsightToolkit-4.12.0 ${SOURCE_PATH}) | ||
|
||
vcpkg_configure_cmake( | ||
SOURCE_PATH ${SOURCE_PATH} | ||
PREFER_NINJA | ||
OPTIONS | ||
-DBUILD_TESTING=OFF | ||
-DBUILD_EXAMPLES=OFF | ||
-DDO_NOT_INSTALL_ITK_TEST_DRIVER=ON | ||
-DITK_INSTALL_DATA_DIR=share/itk/data | ||
-DITK_INSTALL_DOC_DIR=share/itk/doc | ||
-DITK_INSTALL_PACKAGE_DIR=share/itk | ||
-DITK_LEGACY_REMOVE=ON | ||
-DITK_USE_64BITS_IDS=ON | ||
-DITK_USE_CONCEPT_CHECKING=ON | ||
# -DITK_WRAP_PYTHON=ON | ||
# -DITK_PYTHON_VERSION=3 | ||
# -DITK_USE_SYSTEM_LIBRARIES=ON # enables USE_SYSTEM for many third party libraries which do not have vcpkg ports such as FFTW | ||
-DITK_USE_SYSTEM_EXPAT=ON | ||
-DITK_USE_SYSTEM_JPEG=ON | ||
-DITK_USE_SYSTEM_PNG=ON | ||
-DITK_USE_SYSTEM_TIFF=ON | ||
-DITK_USE_SYSTEM_ZLIB=ON | ||
-DITK_FORBID_DOWNLOADS=OFF | ||
-DITK_BUILD_DEFAULT_MODULES=OFF # turns on HDF5, which is problematic | ||
-DITKGroup_IO=OFF # turns on HDF5, which is problematic | ||
-DModule_ITKReview=OFF # turns on HDF5, which is problematic | ||
-DITKGroup_Filtering=ON | ||
-DITKGroup_Registration=ON | ||
-DITKGroup_Segmentation=ON | ||
-DModule_ITKIOMesh=ON | ||
-DModule_ITKIOCSV=ON | ||
-DModule_IOSTL=ON # example how to turn on a non-default module | ||
# -DModule_ITKVtkGlue=ON # this option requires VTK to be a dependency in CONTROL file | ||
-DModule_MorphologicalContourInterpolation=ON # example how to turn on a remote module | ||
-DModule_RLEImage=ON # example how to turn on a remote module | ||
${ADDITIONAL_OPTIONS} | ||
) | ||
|
||
vcpkg_install_cmake() | ||
vcpkg_copy_pdbs() | ||
|
||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share) | ||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) | ||
|
||
# Handle copyright | ||
file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/itk) | ||
file(RENAME ${CURRENT_PACKAGES_DIR}/share/itk/LICENSE ${CURRENT_PACKAGES_DIR}/share/itk/copyright) |