- Dec
- 51
- 0
Hello folks.
I have this my-vcpkg.bat file for the Package Manager vcpkg.exe [1].
It is basically:
cmd.exe /C vcpkg.exe --vcpkg-root %VCPKG_ROOT %$
But sometimes I need to pass a command-line like:
my-vcpkg.bat install package-y[feature1,feature2]:x64-windows
With that, vcpkg.exe receives this as:
vcpkg.exe --vcpkg-root f:\gv\VC_project\VCPKG install package-y[feature1 feature2]:x64-windows
I.e. the comma (,) gets eaten by TCC 31.01.22. I've tried various setdos /X-y values
to no avail. How do I do this?
[1] GitHub - microsoft/vcpkg-tool: Components of microsoft/vcpkg's binary.
I have this my-vcpkg.bat file for the Package Manager vcpkg.exe [1].
It is basically:
cmd.exe /C vcpkg.exe --vcpkg-root %VCPKG_ROOT %$
But sometimes I need to pass a command-line like:
my-vcpkg.bat install package-y[feature1,feature2]:x64-windows
With that, vcpkg.exe receives this as:
vcpkg.exe --vcpkg-root f:\gv\VC_project\VCPKG install package-y[feature1 feature2]:x64-windows
I.e. the comma (,) gets eaten by TCC 31.01.22. I've tried various setdos /X-y values
to no avail. How do I do this?
[1] GitHub - microsoft/vcpkg-tool: Components of microsoft/vcpkg's binary.
Last edited: