summaryrefslogtreecommitdiff
path: root/.gitlab/ci/package_windows.ps1
blob: 9ec2942eaf19780c7b41d65968af5601d79ba01c (plain)
1
2
3
4
5
6
7
if (Test-Path -Path "build/ci_package_info.cmake" -PathType Leaf) {
    cmake -P .gitlab/ci/package_windows_build.cmake
} else {
    cd build
    cpack -G ZIP
    cpack -G WIX
}