There are several builds defined here, and a few more sketched out that don't quite work. Most of the steps call out to external shell or batch files, to make things easier to keep track of.
9 lines
219 B
Batchfile
9 lines
219 B
Batchfile
|
|
setlocal enabledelayedexpansion
|
|
|
|
for /f "usebackq tokens=*" %%i in (`vswhere -latest -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -find **/Auxiliary/Build/vcvarsall.bat`) do (
|
|
%%i
|
|
)
|
|
|
|
scons
|