diff options
author | Micah Anderson <micah@riseup.net> | 2014-08-11 14:04:41 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2014-08-11 14:04:41 -0400 |
commit | 94cc35faeb6248d75841a5f47a41a266086b4d16 (patch) | |
tree | adef88a73becc807b0485ddf1b7670865b8e680f /builds/msvc/build | |
parent | 2e59f9740a29439df7c7a56cf0ae83dec3081d31 (diff) |
initial import of upstream sourcesupstream/latestupstream/0.6.1
Diffstat (limited to 'builds/msvc/build')
-rw-r--r-- | builds/msvc/build/buildall.bat | 10 | ||||
-rw-r--r-- | builds/msvc/build/buildbase.bat | 69 |
2 files changed, 0 insertions, 79 deletions
diff --git a/builds/msvc/build/buildall.bat b/builds/msvc/build/buildall.bat deleted file mode 100644 index d6b0d5f..0000000 --- a/builds/msvc/build/buildall.bat +++ /dev/null @@ -1,10 +0,0 @@ -@ECHO OFF - -CALL buildbase.bat ..\vs2013\libsodium.sln 12 -ECHO. -CALL buildbase.bat ..\vs2012\libsodium.sln 11 -ECHO. -CALL buildbase.bat ..\vs2010\libsodium.sln 10 -ECHO. - -PAUSE
\ No newline at end of file diff --git a/builds/msvc/build/buildbase.bat b/builds/msvc/build/buildbase.bat deleted file mode 100644 index 45efdd5..0000000 --- a/builds/msvc/build/buildbase.bat +++ /dev/null @@ -1,69 +0,0 @@ -@ECHO OFF -REM Usage: [buildbase.bat ..\vs2013\mysolution.sln 12] - -SET solution=%1 -SET version=%2 -SET log=build_%version%.log -SET tools=Microsoft Visual Studio %version%.0\VC\vcvarsall.bat -SET environment="%programfiles(x86)%\%tools%" -IF NOT EXIST %environment% SET environment="%programfiles%\%tools%" -IF NOT EXIST %environment% GOTO no_tools - -ECHO Building: %solution% - -CALL %environment% x86 > nul -ECHO Platform=x86 - -ECHO Configuration=DynDebug -msbuild /m /v:n /p:Configuration=DynDebug /p:Platform=Win32 %solution% > %log% -IF errorlevel 1 GOTO error -ECHO Configuration=DynRelease -msbuild /m /v:n /p:Configuration=DynRelease /p:Platform=Win32 %solution% >> %log% -IF errorlevel 1 GOTO error -ECHO Configuration=LtcgDebug -msbuild /m /v:n /p:Configuration=LtcgDebug /p:Platform=Win32 %solution% >> %log% -IF errorlevel 1 GOTO error -ECHO Configuration=LtcgRelease -msbuild /m /v:n /p:Configuration=LtcgRelease /p:Platform=Win32 %solution% >> %log% -IF errorlevel 1 GOTO error -ECHO Configuration=StaticDebug -msbuild /m /v:n /p:Configuration=StaticDebug /p:Platform=Win32 %solution% >> %log% -IF errorlevel 1 GOTO error -ECHO Configuration=StaticRelease -msbuild /m /v:n /p:Configuration=StaticRelease /p:Platform=Win32 %solution% >> %log% -IF errorlevel 1 GOTO error - -CALL %environment% x86_amd64 > nul -ECHO Platform=x64 - -ECHO Configuration=DynDebug -msbuild /m /v:n /p:Configuration=DynDebug /p:Platform=x64 %solution% > %log% -IF errorlevel 1 GOTO error -ECHO Configuration=DynRelease -msbuild /m /v:n /p:Configuration=DynRelease /p:Platform=x64 %solution% >> %log% -IF errorlevel 1 GOTO error -ECHO Configuration=LtcgDebug -msbuild /m /v:n /p:Configuration=LtcgDebug /p:Platform=x64 %solution% >> %log% -IF errorlevel 1 GOTO error -ECHO Configuration=LtcgRelease -msbuild /m /v:n /p:Configuration=LtcgRelease /p:Platform=x64 %solution% >> %log% -IF errorlevel 1 GOTO error -ECHO Configuration=StaticDebug -msbuild /m /v:n /p:Configuration=StaticDebug /p:Platform=x64 %solution% >> %log% -IF errorlevel 1 GOTO error -ECHO Configuration=StaticRelease -msbuild /m /v:n /p:Configuration=StaticRelease /p:Platform=x64 %solution% >> %log% -IF errorlevel 1 GOTO error - -ECHO Complete: %solution% -GOTO end - -:error -ECHO *** ERROR, build terminated early, see: %log% -GOTO end - -:no_tools -ECHO *** ERROR, build tools not found: %tools% - -:end - |