This repository was archived by the owner on Sep 17, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +22
-1
lines changed
vcpkg-ports/quickdllproxy Expand file tree Collapse file tree 5 files changed +22
-1
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ void *CustomLibraryResolverCallback();
66#define DLL_PROXY_TLS_CALLBACK_AUTOINIT // Enable automatic initialization through a thread local storage callback
77#define DLL_PROXY_DECLARE_IMPLEMENTATION // Define the whole implementation
88#define DLL_PROXY_LIBRARY_RESOLVER_CALLBACK CustomLibraryResolverCallback // Custom DLL path resolver
9- #include " DllProxy /DllProxy.h"
9+ #include < QuickDllProxy /DllProxy.h>
1010
1111extern bool EnableAggressiveHooking;
1212
Original file line number Diff line number Diff line change 1+ vcpkg_from_github(
2+ OUT_SOURCE_PATH SOURCE_PATH
3+ REPO Nukem9/QuickDllProxy
4+ REF 9607eea30e43fef62e21e5842e89ffe1b1dba25c
5+ SHA512 5e1af5c62c19a0f67ec40f872b675b5b5da77ca2fee3fe9f39b23679aef8f6e8f31d292d97d952b8b60a17dfddef90b15bd6b438922135014b37bffe2e219d0f
6+ )
7+
8+ file (INSTALL "${SOURCE_PATH} /include" DESTINATION "${CURRENT_PACKAGES_DIR} " )
9+
10+ # Handle copyright
11+ vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH} /LICENSE.md" )
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " quickdllproxy" ,
3+ "version" : " 1.0" ,
4+ "port-version" : 1 ,
5+ "description" : " A header-only DLL proxy stub generation library built with C++20." ,
6+ "homepage" : " https://github.com/Nukem9/QuickDllProxy" ,
7+ "license" : " LGPL-3.0-only" ,
8+ "supports" : " windows"
9+ }
Original file line number Diff line number Diff line change 33 "supports" : " windows" ,
44 "dependencies" : [
55 " detours" ,
6+ " quickdllproxy" ,
67 " spdlog" ,
78 " vulkan"
89 ]
You can’t perform that action at this time.
0 commit comments