Skip to content

Commit

Permalink
Add script to build with cmake
Browse files Browse the repository at this point in the history
Signed-off-by: Samuli Seppänen <[email protected]>
  • Loading branch information
mattock committed Aug 19, 2021
1 parent 290906b commit fe5d45b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions build-msvc.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Build openvpn-gui with MSVC

$CWD = Get-Location

$CMAKE="C:\Program Files\CMake\bin\cmake.exe"
$CMAKE_TOOLCHAIN_FILE="C:\users\vagrant\buildbot\windows-server-2019-static-msbuild\vcpkg\scripts\buildsystems\vcpkg.cmake"

# Architecture names taken from here:
#
# https://docs.microsoft.com/en-us/cpp/build/cmake-presets-vs?view=msvc-160
"x64", "arm64", "Win32" | ForEach {
$platform = $_
Write-Host "Building openvpn-gui ${platform}"
mkdir build_$platform
cd build_$platform
& "$CMAKE" -A $platform -DCMAKE_TOOLCHAIN_FILE="$CMAKE_TOOLCHAIN_FILE" ..
& "$CMAKE" --build . --config Release
cd $CWD
}

0 comments on commit fe5d45b

Please sign in to comment.