forked from CallumCarmicheal/mod_auth_openidc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap-windows.cmd
38 lines (27 loc) · 1.02 KB
/
bootstrap-windows.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@echo Requires git installed and an account on github
@set STARTTIME=%time%
git submodule update --init --recursive
call "I:\Applications\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
@echo cd to vcpkg
cd vcpkg
call bootstrap-vcpkg.bat
.\vcpkg install pcre:x64-windows
.\vcpkg install pcre:x86-windows
.\vcpkg install apr:x64-windows
.\vcpkg install apr:x86-windows
.\vcpkg install curl:x64-windows
.\vcpkg install curl:x86-windows
.\vcpkg install openssl:x64-windows
.\vcpkg install openssl:x86-windows
.\vcpkg install jansson:x64-windows
.\vcpkg install jansson:x86-windows
REM .\vcpkg integrate install
REM Please Note: The paths to the vcpkg builds are set in the VS project files. I couldn't get the 32bit and 64 bit to work correctly.
cd..
@echo Over changes to cjose and mod_auth_openidc so they compile on windows
xcopy changes\*.* /r /q /y /s
@echo Downloading Apache http x32 and x64 zip files.
powershell .\download.ps1
call build.cmd
@echo Start Time %STARTTIME%
@echo Stop Time %time%