mestevens / xcode-maven-plugin

Maven plugin to work with xcode framework builds
3 stars 1 forks source link

Fix the way build options are passed into the build mojo #6

Closed mestevens closed 9 years ago

mestevens commented 9 years ago

Right now all options are prefixed with a '-' so the only useful ones that can be passed in are ones that require that in front of them (such as -project, -scheme). Build options should be for options that don't required the '-' (such as BUILD_OPTION=asdf as opposed to '-BUILD_OPTION asdf').

The solution is to add configuration tags for the options that use the '-' and have build options be for actual build options.

mestevens commented 9 years ago

Fixed. You can now supply way more build options in the configuration section of the plugin.