https://github.com/Kitware/CMake
Raw File
Tip revision: 66f7d9e6e03f4b38bbd5e456fa32397d809f5bfb authored by Brad King on 12 June 2023, 17:24:29 UTC
CMake 3.27.0-rc2
Tip revision: 66f7d9e
package_windows.ps1
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
}
back to top