All Downloads are FREE. Search and download functionalities are using the official Maven repository.

z3-z3-4.13.0..github.workflows.msvc-static-build.yml Maven / Gradle / Ivy

The newest version!
name: MSVC Static Build
  
on:
  push:
  pull_request:

permissions:
  contents: read # to fetch code (actions/checkout)

jobs:
  build:
    runs-on: windows-2019
    env:
      BUILD_TYPE: Release
    steps:
    - name: Checkout Repo
      uses: actions/checkout@v4
  
    - name: Build
      run: |
        cmake -B build -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} -DZ3_BUILD_LIBZ3_SHARED=OFF -DZ3_BUILD_LIBZ3_MSVC_STATIC=ON
        cmake --build build --config ${{ env.BUILD_TYPE }} --parallel
        




© 2015 - 2024 Weber Informatics LLC | Privacy Policy