diff options
| author | ruki <[email protected]> | 2020-04-10 23:28:33 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-04-10 14:51:20 +0800 |
| commit | 4b5c87bcd8503baed369c6030e132684e797049b (patch) | |
| tree | 0b56750f9afb3a49b24f1454d5d00ba45f926833 /xmake/rules/xcode/info_plist/xmake.lua | |
| parent | f4d5f872d84b8314c51d140679e54b847bb917b8 (diff) | |
pass bundle id
Diffstat (limited to 'xmake/rules/xcode/info_plist/xmake.lua')
| -rw-r--r-- | xmake/rules/xcode/info_plist/xmake.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/xcode/info_plist/xmake.lua b/xmake/rules/xcode/info_plist/xmake.lua index fc0beb027..21a514e47 100644 --- a/xmake/rules/xcode/info_plist/xmake.lua +++ b/xmake/rules/xcode/info_plist/xmake.lua @@ -60,7 +60,7 @@ rule("xcode.info_plist") { DEVELOPMENT_LANGUAGE = "en", EXECUTABLE_NAME = target:basename(), - PRODUCT_BUNDLE_IDENTIFIER = "org.tboox." .. target:name(), + PRODUCT_BUNDLE_IDENTIFIER = target:values("xcode.bundle_identifier") or get_config("xcode_bundle_identifier") or "org.tboox." .. target:name(), PRODUCT_NAME = target:name(), PRODUCT_DISPLAY_NAME = target:name(), CURRENT_PROJECT_VERSION = target:version() and tostring(target:version()) or "1.0", |
