mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 06:38:59 +08:00
ed7822f5af
* [easyhook]Add new port. * [easyhook]Replace files with a patch, add Description, use .Net framework 4.0. * [easyhook]Set ONLY_DYNAMIC_CRT. * [easyhook]Print error message when building static library.
39 lines
1.3 KiB
CMake
39 lines
1.3 KiB
CMake
include(vcpkg_common_functions)
|
|
|
|
if (NOT VCPKG_TARGET_IS_WINDOWS)
|
|
message(FATAL_ERROR "easyhook only support windows.")
|
|
endif()
|
|
|
|
if (VCPKG_LIBRARY_LINKAGE STREQUAL static)
|
|
message(FATAL_ERROR "easyhook can only be built as dynamic library.")
|
|
endif()
|
|
|
|
message(".Net framework 4.0 is required, please install it before install easyhook.")
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO EasyHook/EasyHook
|
|
REF v2.7.6789.0
|
|
SHA512 a48b4fe6dd2e55a2d515bc917c0f3ff5b73f08d1778e671df802347c3b8e1d4638005582a494acdf891ffe3fa6eae3eab0096083a8af2352e3f0883eb83421d6
|
|
HEAD_REF master
|
|
PATCHES fix-build.patch
|
|
)
|
|
|
|
vcpkg_install_msbuild(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
PROJECT_SUBPATH EasyHook.sln
|
|
TARGET EasyHookDll
|
|
RELEASE_CONFIGURATION "netfx4-Release"
|
|
DEBUG_CONFIGURATION "netfx4-Debug"
|
|
)
|
|
|
|
# These libraries are useless, so remove.
|
|
file(REMOVE ${CURRENT_PACKAGES_DIR}/bin/EasyHook.dll ${CURRENT_PACKAGES_DIR}/bin/EasyHook.pdb)
|
|
file(REMOVE ${CURRENT_PACKAGES_DIR}/debug/bin/EasyHook.dll ${CURRENT_PACKAGES_DIR}/debug/bin/EasyHook.pdb)
|
|
|
|
# Install includes
|
|
file(INSTALL ${SOURCE_PATH}/Public/easyhook.h DESTINATION ${CURRENT_PACKAGES_DIR}/include/easyhook)
|
|
|
|
# Handle copyright
|
|
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/easyhook RENAME copyright)
|