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.
 
 
 
 
 
 

23 lines
691 B

# 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 }}