2019-05-03 13:57:43 +08:00
|
|
|
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
2018-03-28 23:55:47 +08:00
|
|
|
|
2017-11-04 13:47:41 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO davisking/dlib
|
2020-08-22 01:40:21 +08:00
|
|
|
REF v19.21
|
|
|
|
SHA512 57133cdcbc5017d324a368ff36a628de55001f1ec0b3ac078b4ad49a63c8c9fb48674617c6a5838ca4e381a6b001fe4aa5a7b3353eb288c58062d2a8fc7b171e
|
2017-11-04 13:47:41 +08:00
|
|
|
HEAD_REF master
|
2019-02-28 15:52:31 +08:00
|
|
|
PATCHES
|
|
|
|
fix-sqlite3-fftw-linkage.patch
|
2019-05-04 02:43:35 +08:00
|
|
|
force_finding_packages.patch
|
2019-05-25 00:39:59 +08:00
|
|
|
find_blas.patch
|
2017-02-18 20:11:48 +08:00
|
|
|
)
|
2017-11-04 13:47:41 +08:00
|
|
|
|
2017-03-17 06:11:34 +08:00
|
|
|
file(REMOVE_RECURSE ${SOURCE_PATH}/dlib/external/libjpeg)
|
|
|
|
file(REMOVE_RECURSE ${SOURCE_PATH}/dlib/external/libpng)
|
|
|
|
file(REMOVE_RECURSE ${SOURCE_PATH}/dlib/external/zlib)
|
2017-02-18 20:11:48 +08:00
|
|
|
|
2017-06-23 05:54:34 +08:00
|
|
|
# This fixes static builds; dlib doesn't pull in the needed transitive dependencies
|
|
|
|
file(READ "${SOURCE_PATH}/dlib/CMakeLists.txt" DLIB_CMAKE)
|
|
|
|
string(REPLACE "PNG_LIBRARY" "PNG_LIBRARIES" DLIB_CMAKE "${DLIB_CMAKE}")
|
|
|
|
file(WRITE "${SOURCE_PATH}/dlib/CMakeLists.txt" "${DLIB_CMAKE}")
|
|
|
|
|
2020-05-08 14:33:16 +08:00
|
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
|
|
"sqlite3" DLIB_LINK_WITH_SQLITE3
|
|
|
|
"fftw3" DLIB_USE_FFTW
|
|
|
|
"cuda" DLIB_USE_CUDA
|
|
|
|
)
|
2017-11-11 23:31:38 +08:00
|
|
|
|
2017-02-18 20:11:48 +08:00
|
|
|
vcpkg_configure_cmake(
|
2017-06-23 05:54:34 +08:00
|
|
|
SOURCE_PATH ${SOURCE_PATH}
|
2019-05-04 02:43:35 +08:00
|
|
|
PREFER_NINJA
|
2017-06-23 05:54:34 +08:00
|
|
|
OPTIONS
|
2020-05-08 14:33:16 +08:00
|
|
|
${FEATURE_OPTIONS}
|
2017-06-23 05:54:34 +08:00
|
|
|
-DDLIB_PNG_SUPPORT=ON
|
|
|
|
-DDLIB_JPEG_SUPPORT=ON
|
2018-01-03 04:58:20 +08:00
|
|
|
-DDLIB_USE_BLAS=ON
|
|
|
|
-DDLIB_USE_LAPACK=ON
|
2017-06-23 05:54:34 +08:00
|
|
|
-DDLIB_GIF_SUPPORT=OFF
|
|
|
|
-DDLIB_USE_MKL_FFT=OFF
|
2019-05-04 02:43:35 +08:00
|
|
|
-DCMAKE_DEBUG_POSTFIX=d
|
2017-06-23 05:54:34 +08:00
|
|
|
OPTIONS_DEBUG
|
|
|
|
-DDLIB_ENABLE_ASSERTS=ON
|
|
|
|
#-DDLIB_ENABLE_STACK_TRACE=ON
|
2017-02-18 20:11:48 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
|
2017-11-04 15:39:59 +08:00
|
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/dlib)
|
2017-06-23 05:54:34 +08:00
|
|
|
|
2017-02-18 20:11:48 +08:00
|
|
|
# There is no way to suppress installation of the headers and resource files in debug build.
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
|
|
|
|
|
|
|
|
# Remove other files not required in package
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/dlib/all)
|
2017-12-21 00:15:18 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/dlib/appveyor)
|
2017-03-17 02:17:34 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/dlib/test)
|
2019-05-04 02:43:35 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/dlib/travis)
|
2017-11-04 15:39:59 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/dlib/cmake_utils/test_for_neon)
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/dlib/cmake_utils/test_for_cudnn)
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/dlib/cmake_utils/test_for_cuda)
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/dlib/cmake_utils/test_for_cpp11)
|
2018-05-27 23:46:34 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/dlib/cmake_utils/test_for_avx)
|
2018-07-09 13:30:49 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/dlib/cmake_utils/test_for_sse4)
|
2020-04-23 02:28:56 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/dlib/cmake_utils/test_for_libjpeg)
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/dlib/cmake_utils/test_for_libpng)
|
2017-02-18 20:11:48 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/dlib/external/libpng/arm)
|
|
|
|
|
2017-05-07 18:03:40 +08:00
|
|
|
# Dlib encodes debug/release in its config.h. Patch it to respond to the NDEBUG macro instead.
|
|
|
|
file(READ ${CURRENT_PACKAGES_DIR}/include/dlib/config.h _contents)
|
2018-01-28 08:07:07 +08:00
|
|
|
string(REPLACE "/* #undef ENABLE_ASSERTS */" "#if defined(_DEBUG)\n#define ENABLE_ASSERTS\n#endif" _contents ${_contents})
|
|
|
|
string(REPLACE "#define DLIB_DISABLE_ASSERTS" "#if !defined(_DEBUG)\n#define DLIB_DISABLE_ASSERTS\n#endif" _contents ${_contents})
|
2018-07-03 19:41:53 +08:00
|
|
|
file(WRITE ${CURRENT_PACKAGES_DIR}/include/dlib/config.h "${_contents}")
|
2017-05-07 18:03:40 +08:00
|
|
|
|
2017-02-18 20:11:48 +08:00
|
|
|
# Handle copyright
|
2020-04-23 02:28:56 +08:00
|
|
|
file(INSTALL ${SOURCE_PATH}/dlib/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|
2017-03-17 02:17:34 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/share/doc)
|