-
Notifications
You must be signed in to change notification settings - Fork 911
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update in vcpkg #286
Comments
As the readme says:
The last stable version is 1.83, which is also used by the vcpkg port. If you want to use a more recent version, you can easily achieve this on your own using overlay ports. This is actually pretty straightforward. Create a folder somewhere in your repository that stores the overlay, e.g., vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO CedricGuillemet/ImGuizmo
REF fbc3614abcc642de7f3868cc0d68a35503ca9a4e
SHA512 0
HEAD_REF master
) Next, tell vcpkg to pick up the overlay port. Using CMake you can do this using: SET(VCPKG_OVERLAY_PORTS "${CMAKE_SOURCE_DIR}/modules/overlay-ports/imguizmo/") This of course assumes, that your top-level CMakeLists.txt is placed in the root directory of the repository and that you are using the vcpkg toolchain file. If you are running vcpkg from command line use .\vcpkg.exe install imguizmo --overlay-ports=modules/overlay-ports/imguizmo/ Alternatively, you can create a Whichever way you decide to go, running this the first time should yield an error, saying that there was a mismatch in the archive hashes. This error also prints the correct archive hash:
Copy this hash into the |
Hi, thanks for the great framework!
I was just wondering if it would be possible for you to update it in vcpkg, as it is outdated.
Thanks!
The text was updated successfully, but these errors were encountered: