early-access version 2853

This commit is contained in:
pineappleEA
2022-07-23 03:01:36 +02:00
parent 1f2b5081b5
commit 1f111bb69c
8955 changed files with 418777 additions and 999 deletions

View File

@@ -0,0 +1,48 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO NIFTI-Imaging/nifti_clib
REF 65f801b9c2f1f15f4de4a19d45e6595c25765632
SHA512 be03cdc6cf17fd9ff74c5ecc1f6b2132121bb4b7973a731da334af2a8428d1f0dbbf7b94b2511d1ff7e515b8cc4cf3316d62b189566fb6ffc88c6146eebd48ff
HEAD_REF master
PATCHES zlib_include.patch
)
if(VCPKG_TARGET_IS_WINDOWS)
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
endif()
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
"cifti" USE_CIFTI_CODE
"fsl" USE_FSL_CODE
"nifti2" USE_NIFTI2_CODE
"nifticdf" USE_NIFTICDF_CODE
"tools" NIFTI_BUILD_APPLICATIONS
"tests" BUILD_TESTING
)
set(TOOL_NAMES)
if("tools" IN_LIST FEATURES)
list(APPEND TOOL_NAMES nifti_stats nifti_tool nifti1_tool)
endif()
if("tests" IN_LIST FEATURES)
list(APPEND TOOL_NAMES nifit_test)
endif()
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
${FEATURE_OPTIONS}
)
vcpkg_install_cmake()
vcpkg_copy_pdbs()
vcpkg_fixup_cmake_targets(CONFIG_PATH share/cmake TARGET_PATH share)
if(TOOL_NAMES)
vcpkg_copy_tools(TOOL_NAMES ${TOOL_NAMES} AUTO_CLEAN)
endif()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)

35
externals/vcpkg/ports/nifticlib/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,35 @@
{
"name": "nifticlib",
"version-string": "2020-04-30",
"port-version": 1,
"description": "Nifticlib is a C I/O library for reading and writing files in the nifti-1 data format.",
"homepage": "NIFTI-Imaging/nifti_clib",
"supports": "!uwp",
"dependencies": [
"zlib"
],
"default-features": [
"nifti2",
"nifticdf"
],
"features": {
"cifti": {
"description": "Build cifti libraries and tools"
},
"fsl": {
"description": "Build fsl libraries and tools"
},
"nifti2": {
"description": "Build nifti2 libraries and tools"
},
"nifticdf": {
"description": "Build nifticdf libraries and tools"
},
"tests": {
"description": "Build tests"
},
"tools": {
"description": "Build tools"
}
}
}

View File

@@ -0,0 +1,12 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 54150d739..c3ca8fe50 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -77,6 +77,7 @@ set_if_not_defined(ZNZ_COMPILE_DEF "")
if(NOT NIFTI_ZLIB_LIBRARIES) # If using a custom zlib library, skip the find package
### USE AS STAND ALONE PACKAGE
find_package(ZLIB REQUIRED)
+ include_directories(${ZLIB_INCLUDE_DIRS})
set(NIFTI_ZLIB_LIBRARIES ${ZLIB_LIBRARIES})
endif()
#message(STATUS "---------------------ZLIB -${NIFTI_ZLIB_LIBRARIES}--")