diff options
| author | ruki <[email protected]> | 2025-04-21 09:43:35 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-21 09:43:35 +0800 |
| commit | 73ad382b342e927e231eeb3225fca25585bc4ff3 (patch) | |
| tree | 29cafd5be98ce146b1423bf8e7e2cfa140ee6492 /xmake/languages/objc++/xmake.lua | |
| parent | 95033c7144409b7fbe26815dcd641836e5f4a718 (diff) | |
Update xmake.lua
Diffstat (limited to 'xmake/languages/objc++/xmake.lua')
| -rw-r--r-- | xmake/languages/objc++/xmake.lua | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/xmake/languages/objc++/xmake.lua b/xmake/languages/objc++/xmake.lua index 808ae89c0..b6732351e 100644 --- a/xmake/languages/objc++/xmake.lua +++ b/xmake/languages/objc++/xmake.lua @@ -49,14 +49,12 @@ language("objc++") on_check_main("check_main") -- set name flags - set_nameflags - { - object = - { - "target.runtimes" - , "config.includedirs" + set_nameflags { + object = { + "config.includedirs" , "config.frameworkdirs" , "config.frameworks" + , "target.runtimes" , "target.symbols" , "target.warnings" , "target.optimize:check" @@ -80,8 +78,7 @@ language("objc++") , "target.sysincludedirs" , "toolchain.sysincludedirs" } - , binary = - { + , binary = { "target.runtimes" , "config.linkdirs" , "config.frameworkdirs" @@ -104,8 +101,7 @@ language("objc++") , "target.syslinks" , "toolchain.syslinks" } - , shared = - { + , shared = { "target.runtimes" , "config.linkdirs" , "config.frameworkdirs" @@ -126,8 +122,7 @@ language("objc++") , "target.syslinks" , "toolchain.syslinks" } - , static = - { + , static = { "target.strip" , "target.symbols" } |
