소스 검색

Merge branch 'master' of https://github.com/defold/doc

Björn Ritzl 6 년 전
부모
커밋
0ee7da104a
1개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  1. 13 0
      docs/en/manuals/extensions.md

+ 13 - 0
docs/en/manuals/extensions.md

@@ -213,6 +213,19 @@ platforms:
             defines:    ["MY_DEFINE"]
 ```
 
+### Allowed keys
+
+Allowed keys are for platform specific compile flags are:
+
+* `frameworks` - Apple frameworks to include when building (iOS and OSX)
+* `flags` - Flags that should be passed to the compiler
+* `linkFlags` - Flags that should be passed to the linker
+* `libs` - Libraries to include when linking
+* `defines` - Defines to set when building
+* `aaptExtraPackages` - Extra package name that should be generated (Android)
+* `aaptExcludePackages` - Regexp (or exact names) of packages to exclude (Android)
+* `aaptExcludeResourceDirs` - Regexp (or exact names) of resource dirs to exclude (Android)
+
 ## Example extensions
 
 * [Basic extension example](https://github.com/defold/template-native-extension) (the extension from this manual)