From 7115f60b91b5717d90f643fd692010905c7004db Mon Sep 17 00:00:00 2001 From: Bryan Galdrikian Date: Thu, 31 May 2018 11:36:08 -0700 Subject: Blast 1.1.3. See docs/release_notes.txt. --- generate_projects_vc15win64.bat | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 generate_projects_vc15win64.bat (limited to 'generate_projects_vc15win64.bat') diff --git a/generate_projects_vc15win64.bat b/generate_projects_vc15win64.bat new file mode 100755 index 0000000..1e32980 --- /dev/null +++ b/generate_projects_vc15win64.bat @@ -0,0 +1,22 @@ +:: Reset errorlevel status so we are not inheriting this state from the calling process: +@call :CLEAN_EXIT + +:: Set the blast root to the current directory so that included solutions that aren't Blast know where the root is without having to +:: guess or hardcode a relative path. +:: Use the "short" path so that we don't have to quote paths in that calls below. If we don't do that spaces can break us. +@SET BLAST_ROOT_DIR=%~sdp0 + +:: Run packman to ensure dependencies are present and run cmake generation script afterwards +@call "%~dp0buildtools\get_build_deps.cmd" win.msvc +@if %ERRORLEVEL% neq 0 exit /b %errorlevel% + +@echo Getting target platform dependencies for win.x86_64.vc150 ... +@call "%~dp0buildtools\packman5\packman.cmd" pull "%~dp0target_platform_deps.xml" --platform win.x86_64.vc150 --postscript "%~dp0buildtools\cmake_projects_vc15win64.bat" +@if %ERRORLEVEL% neq 0 ( + @exit /b %errorlevel% +) else ( + @echo Success! +) + +:CLEAN_EXIT +@exit /b 0 \ No newline at end of file -- cgit v1.2.3