Paulius Ruminas
01/28/2019, 4:43 PMframework module common {
umbrella header "common.h"
export *
module * { export * }
}
With gradle 4.10
framework module main {
umbrella header "main.h"
export *
module * { export * }
}
Can I specify an argument that would generate the previous module that was common
instead of main
?compilations.main.extraOpts '-output', "$buildDir/bin/common.framework"
Jeremy
01/28/2019, 7:27 PMJL
01/28/2019, 7:50 PM