File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,6 @@ REM Print the first argument of the script
55FOR /F " tokens=* USEBACKQ" %%F IN (`" C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe" -latest -property InstallationPath`) DO (
66SET vspath = %%F
77)
8- ECHO %vspath%
9- ECHO %1
108set VSCMD_START_DIR = %1
119CALL " %vspath% \VC\Auxiliary\Build\vcvarsall.bat" x64
12- just build_dist
10+ just build_dist %2
Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ clear_cache:
2929
3030# will invoke just build_dist but first activates the visual studio environment
3131[windows ]
32- dist :
33- cmd.exe / C ' {{ source_directory ()}} /dist.bat' ' {{ justfile_directory ()}} '
32+ dist triplet = VCPKG_DEFAULT_TRIPLET :
33+ cmd.exe / C ' {{ source_directory ()}} /dist.bat' ' {{ justfile_directory ()}} ' ' {{ triplet }} '
3434
3535[unix ]
36- dist : build_dist
36+ dist triplet = VCPKG_DEFAULT_TRIPLET : ( build_dist triplet)
You can’t perform that action at this time.
0 commit comments