Updated Branches: refs/heads/master 823f9a82f -> 6b01af349
0.8.1. Updated plugin spec re: compiler flags for iOS. Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/6b01af34 Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/6b01af34 Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/6b01af34 Branch: refs/heads/master Commit: 6b01af349676a5f178da0863a65d15eadf23cf8e Parents: 823f9a8 Author: Fil Maj <[email protected]> Authored: Wed Jul 3 10:23:05 2013 -0700 Committer: Fil Maj <[email protected]> Committed: Wed Jul 3 10:23:05 2013 -0700 ---------------------------------------------------------------------- package.json | 2 +- plugin_spec.md | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/6b01af34/package.json ---------------------------------------------------------------------- diff --git a/package.json b/package.json index eb483f4..e4180de 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "author": "Andrew Lunny <[email protected]>", "name": "plugman", "description": "install/uninstall Cordova plugins", - "version": "0.8.0", + "version": "0.8.1", "repository": { "type": "git", "url": "git://git-wip-us.apache.org/repos/asf/cordova-plugman.git" http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/6b01af34/plugin_spec.md ---------------------------------------------------------------------- diff --git a/plugin_spec.md b/plugin_spec.md index 2fbabbf..d49438c 100644 --- a/plugin_spec.md +++ b/plugin_spec.md @@ -203,6 +203,7 @@ into a project. A couple of examples: <!-- ios --> <source-file src="src/ios/CDVFoo.m" /> <source-file src="src/ios/someLib.a" framework="true" /> + <source-file src="src/ios/someLib.a" compiler-flags="-fno-objc-arc" /> ### src (required) @@ -227,6 +228,10 @@ As with assets, if a `source-file`'s `target` would overwrite an existing file, Only used for iOS. If set to `true`, will also add the specified file as a framework to the project. +### compiler-flags + +Only used for iOS. If set, will assign the specified compiler flags for the particular source file. + ## <config-file> Identifies an XML-based configuration file to be modified, where in that
