2020-10-09 13:59:51 +08:00
|
|
|
vcpkg_fail_port_install(ON_ARCH "arm" ON_TARGET "uwp")
|
2018-02-27 23:05:18 +08:00
|
|
|
|
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
|
2020-10-09 13:59:51 +08:00
|
|
|
REF 5482e077d1c8637499f86231bcd3979cb7fa6aef # v2.0.6
|
|
|
|
SHA512 e529c8d1d97e972f8314be9837e10f4ebab57d4a5f19a66341bb8e163dfe53d1d640a3909a708b021a52d0e6c2537954d749cb80e71757469700a3e9e173ceca
|
2018-02-27 23:05:18 +08:00
|
|
|
HEAD_REF master
|
|
|
|
PATCHES
|
2019-10-08 01:35:13 +08:00
|
|
|
fix-headers.patch
|
2018-02-27 23:05:18 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
# 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
|
|
|
)
|
|
|
|
|
|
|
|
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
|
2020-10-09 13:59:51 +08:00
|
|
|
file(INSTALL ${SOURCE_PATH}/README.md DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|