I have installed a vcpkg package with vcpkg install shogun:x64-windows
. The build fails and I need to change a file to fix it.
How can I rebuild the package without the install
option, that overwrites my changes?
I cannot find any VC project in the vcpkg\buildtrees\shogun\x64-windows-<configuration>\src\shogun
folder.
Asked
Active
Viewed 5,428 times
5

Stefano Piovesan
- 1,185
- 3
- 19
- 37
1 Answers
4
You should:
- delete buildtrees directory
- Execute command "vcpkg remove shogun:x64-windows"
- If you need to change shogun solution before install you should write a .patch file and copy to this path("(install_path)\vcpkg\ports\shogun")
- Add your patch file to "(install_path)\vcpkg\ports\shogun\portfile.cmake"
- Find this line "set(ABSEIL_PATCHES" and add your patch file name in next line
- Then "vcpkg install shogun:x64-windows"

mohammad madani
- 868
- 9
- 18