2018-02-27 23:05:18 +08:00
|
|
|
include(vcpkg_common_functions)
|
|
|
|
|
2019-05-03 13:57:43 +08:00
|
|
|
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
2018-02-27 23:05:18 +08:00
|
|
|
|
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
[many ports] Updates 2019.05.24 (#6618)
* [many ports] Updates 2019.05.24
* Update SHA512 and resolve conflict for ebml and matroska
* [avro-c]Fix build error caused by jansson upgrades.
* [xxhash]Update to the next version to fix build error.(xxhash issue:#179)
* Fix failures and undo asio
* [libyaml, grpc, miniz, paho-mqtt, sqlitecpp] Update patches
* Update REF
* Undo nvtt flann itk libtins aws-sdk-cpp openvdb vlpp xmsh changes
* [flann, fastcdr] Fix old patches and build error.
* [flann, fastcdr] Fix build error.
* Fix ensmallen uvatlas cppcms libplist failures and undo aws-c-common libopusenc arb taglib changes
* [dcmtk, draco, flatbuffers, forge, ftgl, mosquitto,nmslib, ogre] Update old patches and fix build error.
* fix libusbmuxd failures and undo xxhash paho-mqtt mongo-c-driver flann libffi
* fix libimobiledevice and undo qhull harfbuzz lcm libbson draco flatbuffers
* undo libmupdf forge kd-soap qca
* [mosquitto] Fix installation of import libs
* [arb][asio][aws-c-common][collada-dom][concurrentqueue][cryptopp][ebml] Revert trivial/undesired changes
* [fastcdr] Minimize patch
* [many ports] Revert trivial changes
* [libyaml] Switch to non-dist tag
* [sqlite-modern-cpp] Track master due to infrequent release
* [nano-signal-slot] Revert downgrade
* [openvpn3] Bump control version to account for portfile change
* [sqlite-modern-cpp] Fixup wrong hash
* [mosquitto] Commit missing patch
2019-06-11 08:01:54 +08:00
|
|
|
REPO nmslib/nmslib
|
2019-08-25 04:43:57 +08:00
|
|
|
REF c9fc0b862f09260b558cf81e94e0d58aca15d9e9
|
|
|
|
SHA512 ac9c79e3ac991dd58f239f7e0b2bd6c3185907aa283bc42098aadddac87b361867f002664cc14853822f92a491d95269578bea01aa00477e39a40424320000a1
|
2018-02-27 23:05:18 +08:00
|
|
|
HEAD_REF master
|
|
|
|
PATCHES
|
2019-10-08 01:35:13 +08:00
|
|
|
fix-headers.patch
|
|
|
|
fix-cmake-order.patch
|
2018-02-27 23:05:18 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
set(WITH_EXTRAS OFF)
|
|
|
|
if("extra" IN_LIST FEATURES)
|
|
|
|
set(WITH_EXTRAS ON)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# TODO: check SSE and AVX avability and set corresponding tags
|
|
|
|
vcpkg_configure_cmake(
|
|
|
|
SOURCE_PATH ${SOURCE_PATH}/similarity_search
|
2019-08-01 04:01:02 +08:00
|
|
|
PREFER_NINJA
|
2018-02-27 23:05:18 +08:00
|
|
|
OPTIONS
|
|
|
|
-DWITH_EXTRAS=${WITH_EXTRAS}
|
|
|
|
)
|
|
|
|
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
|
|
|
|
# Move headers into separate folder
|
|
|
|
set(SUBFOLDERS factory method space)
|
|
|
|
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/include/nmslib)
|
|
|
|
foreach(SUBFOLER ${SUBFOLDERS})
|
2019-05-03 13:57:43 +08:00
|
|
|
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/include/nmslib/${SUBFOLER})
|
2018-02-27 23:05:18 +08:00
|
|
|
endforeach()
|
|
|
|
|
|
|
|
file(GLOB HEADERS ${CURRENT_PACKAGES_DIR}/include/*.h ${CURRENT_PACKAGES_DIR}/include/*/*.h)
|
|
|
|
foreach(HEADER ${HEADERS})
|
|
|
|
string(REPLACE "${CURRENT_PACKAGES_DIR}/include" "${CURRENT_PACKAGES_DIR}/include/nmslib"
|
|
|
|
MOVED_HEADER ${HEADER})
|
|
|
|
file(RENAME ${HEADER} ${MOVED_HEADER})
|
|
|
|
endforeach(HEADER ${HEADERS})
|
|
|
|
|
|
|
|
foreach(SUBFOLER ${SUBFOLDERS})
|
2019-05-03 13:57:43 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/${SUBFOLER}/)
|
2018-02-27 23:05:18 +08:00
|
|
|
endforeach()
|
|
|
|
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
|
|
|
|
|
|
|
# Put the license file where vcpkg expects it
|
|
|
|
file(COPY ${SOURCE_PATH}/README.md DESTINATION ${CURRENT_PACKAGES_DIR}/share/nmslib/)
|
|
|
|
file(RENAME ${CURRENT_PACKAGES_DIR}/share/nmslib/README.md ${CURRENT_PACKAGES_DIR}/share/nmslib/copyright)
|