Skip to content

Fix IPv6 multicast #692

Fix IPv6 multicast

Fix IPv6 multicast #692

Workflow file for this run

name: windows
on: [push, pull_request]
jobs:
windows-build:
runs-on: ${{ matrix.windows-version }}
strategy:
fail-fast: false
matrix:
windows-version:
- 'windows-2019'
- 'windows-latest'
env:
CXXFLAGS: /MP
steps:
- name: Sync repository
uses: actions/checkout@v4
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '5.15.2'
arch: 'win64_msvc2019_64'
dir: '${{ github.workspace }}/qt_installation/'
cache: 'true'
cached: ${{ steps.cache-qt.outputs.cache-hit }}
- name: Build Plotjuggler
shell: pwsh
run: >
cmake -Ax64 -T host=x64 -B build -DCMAKE_INSTALL_PREFIX=install PlotJuggler;
cmake --build build --target install