[efsw] Add new port (#11901)

* [efsw] Add new port

* Update portfile.cmake

* Remove unnecessary BUILD_SHARED_LIBS assigning

* Update portfile.cmake

* Update library

Co-authored-by: Lily <47812810+LilyWangL@users.noreply.github.com>
This commit is contained in:
Leonid Pospelov 2020-06-23 22:58:38 +02:00 committed by GitHub
parent c12aa1cd7b
commit 8af2f692eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

5
ports/efsw/CONTROL Normal file
View File

@ -0,0 +1,5 @@
Source: efsw
Version: 2020-06-08
Homepage: https://github.com/SpartanJ/efsw
Description: efsw is a C++ cross-platform file system watcher and notifier.
Supports: !uwp

28
ports/efsw/portfile.cmake Normal file
View File

@ -0,0 +1,28 @@
vcpkg_fail_port_install(ON_TARGET "UWP")
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO SpartanJ/efsw
REF b62d04829bb0a6f3cacc7859e0b046a3c053bc50
SHA512 fc16ef6ad330941dc0a1112ce645b57bd126d353556d50f45fadf150f25edd42c1d4946bc54d629d94c208d67d4ce17dbf5d1079cbeed51f0f6b1ccbe2199132
HEAD_REF master
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
-DVERBOSE=OFF
-DBUILD_TEST_APP=OFF
)
vcpkg_install_cmake()
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
vcpkg_copy_pdbs()
# Handle copyright
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)