make.bat was starting to become hard to maintain, this refactors it into separate batch files for each stage of the process. -Improved detection of msvc2013/2015 -Improved failure handling. -Added check for working msbuild and C++ compiler -Added verbose switch to ease trouble shooting. -Added Check if svn/cmake/git are in the path before using them -Display the build configuration before asking to download the libraries -Offer an option to recover an interrupted checkout of the libraries. -Automatically check out sub-modules in-case they are missing.
24 lines
502 B
Batchfile
24 lines
502 B
Batchfile
rem reset all variables so they do not get accidentally get carried over from previous builds
|
|
set BUILD_DIR_OVERRRIDE=
|
|
set BUILD_CMAKE_ARGS=
|
|
set BUILD_ARCH=
|
|
set BUILD_VS_VER=
|
|
set BUILD_VS_YEAR=
|
|
set BUILD_VS_LIBDIRPOST=
|
|
set BUILD_VS_LIBDIR=
|
|
set BUILD_VS_SVNDIR=
|
|
set BUILD_NGE=
|
|
set KEY_NAME=
|
|
set MSBUILD_PLATFORM=
|
|
set MUST_CLEAN=
|
|
set NOBUILD=
|
|
set TARGET=
|
|
set VERBOSE=
|
|
set WINDOWS_ARCH=
|
|
set TESTS_CMAKE_ARGS=
|
|
set VSWHERE_ARGS=
|
|
set BUILD_UPDATE=
|
|
set BUILD_SHOW_HASHES=
|
|
set SHOW_HELP=
|
|
set BUILD_WITH_NINJA=
|