libui/azure-pipelines/configure.yml

13 lines
310 B
YAML
Raw Normal View History

# 5 april 2019
parameters:
beforeConfigure: ''
defaultLibrary: 'must-be-set'
2019-04-07 14:32:01 -05:00
extraOptions: ''
steps:
- script: |
${{ parameters.beforeConfigure }}
2019-04-07 14:32:01 -05:00
meson setup build --buildtype=release --default-library=${{ parameters.defaultLibrary }} ${{ parameters.extraOptions }}
displayName: 'Configure'