Official mirror of https://gitlab.freedesktop.org/freetype/freetype
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
691 B
24 lines
691 B
4 years ago
|
# passthrough templateto call other build templates
|
||
|
|
||
|
parameters:
|
||
|
- name: buildArgs # CMake configure flags
|
||
|
default: ''
|
||
|
- name: buildArgs # CMake configure flags
|
||
|
default: ''
|
||
|
- name: mingw # Mingw requires special enviormental setup
|
||
|
type: boolean
|
||
|
default: false
|
||
|
- name: preCMD # Command(s) executed before calling CMake
|
||
|
default: ''
|
||
|
- name: srcDIR # Location of freetype2 sources
|
||
|
default: '.'
|
||
|
- name: postCMD # Command(s) executed after calling CMake
|
||
|
default: ''
|
||
|
|
||
|
- template: build-autotools.yml
|
||
|
parameters:
|
||
|
preCMD: ${{ parameters.preCMD }}
|
||
|
srcDIR: ${{ parameters.srcDIR }}
|
||
|
postCMD: ${{ parameters.postCMD }}
|
||
|
buildArgs: ${{ parameters.buildArgs }}
|