appveyor.yml: omit makedepend step.
makedepend makes lesser sense in a throw-away build like CI, but it spares some computational time, because with MSVC it takes separate per-file compiler invocation. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5452)
This commit is contained in:
parent
6afed267db
commit
441bcafd86
1 changed files with 2 additions and 2 deletions
|
@ -22,9 +22,9 @@ before_build:
|
|||
}
|
||||
- ps: >-
|
||||
If ($env:Configuration -Match "shared") {
|
||||
$env:SHARED=""
|
||||
$env:SHARED="no-makedepend"
|
||||
} Else {
|
||||
$env:SHARED="no-shared"
|
||||
$env:SHARED="no-shared no-makedepend"
|
||||
}
|
||||
- ps: $env:VSCOMNTOOLS=(Get-Content ("env:VS" + "$env:VSVER" + "0COMNTOOLS"))
|
||||
- call "%VSCOMNTOOLS%\..\..\VC\vcvarsall.bat" %VCVARS_PLATFORM%
|
||||
|
|
Loading…
Reference in a new issue