Skip to content

cmake: Don't install plum-static and configure plum target to be dependent on BUILD_SHARED_LIBS option #109

cmake: Don't install plum-static and configure plum target to be dependent on BUILD_SHARED_LIBS option

cmake: Don't install plum-static and configure plum target to be dependent on BUILD_SHARED_LIBS option #109

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: cmake
run: cmake -B build -DWARNINGS_AS_ERRORS=1
- name: make
run: (cd build; make)
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: cmake
run: cmake -B build -DWARNINGS_AS_ERRORS=1
- name: make
run: (cd build; make)
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: ilammy/msvc-dev-cmd@v1
- name: cmake
run: cmake -B build -G "NMake Makefiles" -DWARNINGS_AS_ERRORS=1
- name: nmake
run: |
cd build
nmake