Cyrille QUÉMIN
03/02/2019, 2:29 PMios32
and ios64
presets. The 32 preset defines a cinterops
. Is there a way for the 64 to 'inherit` the preset definition or do I have to duplicate the cinterops
bloc and the others into my 64 preset ?
Ideally something like ?
fromPreset(presets.iosArm32, 'myIOS') {
compilations.main.cinterops {
[...]
}
fromPreset(presets.myIOS, 'iOS64'){
}
Dominaezzz
03/02/2019, 2:44 PMfromPreset(presets.iosArm32, 'myIOS') {
}
fromPreset(presets.myIOS, 'iOS64'){
}
configure(targets.myIOS, targets.iOS64) {
compilations.main.cinterops {
[...]
}
Cyrille QUÉMIN
03/02/2019, 2:51 PMkotlin {
targets {
configure...
}
}
}
kotlin {
targets { }
configure...
}
}
Dominaezzz
03/02/2019, 2:52 PMkotlin
block.Dominaezzz
03/02/2019, 2:53 PMCyrille QUÉMIN
03/02/2019, 2:59 PMconfigure(targets.myIOS, targets.iOS64)
where actually the type should have been a list configure([targets.myIOS, targets.iOS64])
. My bad, all good now thank you.Dominaezzz
03/02/2019, 3:00 PM