File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ RUN sudo vcpkg integrate install
5151# Install vcpkg requirements
5252WORKDIR "C:\\vcpkg"
5353COPY ./thirdparty/vcpkg/triplets/x64-windows-meshrus.cmake ./triplets
54- COPY ./thirdparty/vcpkg/downloads ./downloads
5554RUN C:\\workspace\\MeshLib\\thirdparty\\install.bat && rmdir /s /q buildtrees downloads ports packages
5655
5756WORKDIR "C:\\workspace"
Original file line number Diff line number Diff line change 1- set VCPKG_DEFAULT_TRIPLET = x64-windows-meshrus
2- vcpkg install " @%~dp0 \..\requirements\windows.txt" --recurse --binarysource=clear
1+ set VCPKG_DEFAULT_TRIPLET = x64-windows-meshrus
2+
3+ for /f " delims=" %%i in ('where vcpkg') do set vcpkg_path = %%i
4+ if not exist %vcpkg_path% \..\downloads mkdir %vcpkg_path% \..\downloads
5+ copy " %~dp0 vcpkg\downloads" %vcpkg_path% \..\downloads
6+
7+ vcpkg install " @%~dp0 \..\requirements\windows.txt" --recurse --binarysource=clear
You can’t perform that action at this time.
0 commit comments