Skip to content

Added possibility to define install prefix #7

Added possibility to define install prefix

Added possibility to define install prefix #7

Workflow file for this run

name: build-windows
on: [push]
jobs:
build-windows:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
steps:
- uses: actions/checkout@v1
- name: clone eigen
run: git clone "https://github.com/eigenteam/eigen-git-mirror.git" /eigen3
- name: configure
run: mkdir build-release;cd build-release;cmake -DEIGEN3_INCLUDE_DIR=/eigen3 ..
shell: pwsh
- name: build
run: cmake --build build-release --config Release