blob: 64b635b1e876715d4f7cf74dd189aafc7e96a8ab [file] [log] [blame]
James E. King, III07f59972017-03-10 06:18:33 -05001::
2:: Licensed under the Apache License, Version 2.0 (the "License");
3:: you may not use this file except in compliance with the License.
4:: You may obtain a copy of the License at
5::
6:: http://www.apache.org/licenses/LICENSE-2.0
7::
8:: Unless required by applicable law or agreed to in writing, software
9:: distributed under the License is distributed on an "AS IS" BASIS,
10:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11:: See the License for the specific language governing permissions and
12:: limitations under the License.
13::
14
15SETLOCAL EnableDelayedExpansion
16
17SET URLFILE=libevent-%LIBEVENT_VERSION%-stable.tar.gz
18SET URL=https://github.com/libevent/libevent/releases/download/release-%LIBEVENT_VERSION%-stable/%URLFILE%
19
James E. King III860a5f12018-03-06 14:23:23 -050020:: Download - support running a local build or a build in appveyor
21CD "%WIN3P%" || EXIT /B
22IF "%APPVEYOR_BUILD_ID%" == "" (
23 curl -L -f -o "%URLFILE%" "%URL%"
24) ELSE (
25 appveyor DownloadFile "%URL%"
26)
277z x "%URLFILE%" -so | 7z x -si -ttar > nul || EXIT /B
James E. King, III07f59972017-03-10 06:18:33 -050028CD "libevent-%LIBEVENT_VERSION%-stable" || EXIT /B
James E. King III860a5f12018-03-06 14:23:23 -050029nmake -f Makefile.nmake static_libs || EXIT /B
30
31:: in libevent 2.0 there is no nmake subdirectory in WIN32-Code, but in 2.1 there is
James E. King, III07f59972017-03-10 06:18:33 -050032mkdir lib || EXIT /B
33move *.lib lib\ || EXIT /B
James E. King III860a5f12018-03-06 14:23:23 -050034move WIN32-Code\event2\* include\event2\ || move WIN32-Code\nmake\event2\* include\event2\ || EXIT /B
James E. King, III07f59972017-03-10 06:18:33 -050035move *.h include\ || EXIT /B
36
37ENDLOCAL