diff options
| author | ruki <[email protected]> | 2023-09-27 23:53:21 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-09-27 23:53:21 +0800 |
| commit | 6ffb48dd54c6d2d4e6168fac56943481d58e29c4 (patch) | |
| tree | 7a463c358d683d9a9ad047ed0e1a052c488ee8fa /xmake/languages/c++/load.lua | |
| parent | d53b673e631873b21b07665498a142cc31059c81 (diff) | |
add groups for interpreter
Diffstat (limited to 'xmake/languages/c++/load.lua')
| -rw-r--r-- | xmake/languages/c++/load.lua | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/xmake/languages/c++/load.lua b/xmake/languages/c++/load.lua index ccf75a099..b35938783 100644 --- a/xmake/languages/c++/load.lua +++ b/xmake/languages/c++/load.lua @@ -36,8 +36,6 @@ function _get_apis() , "target.add_frameworks" , "target.add_rpathdirs" -- @note do not translate path, it's usually an absolute path or contains $ORIGIN/@loader_path , "target.add_forceincludes" - , "target.add_linkorders" - , "target.add_linkgroups" -- option.add_xxx , "option.add_cincludes" , "option.add_cxxincludes" @@ -92,6 +90,11 @@ function _get_apis() , "toolchain.add_sysincludedirs" , "toolchain.add_frameworkdirs" } + apis.groups = { + -- target.add_xxx + "target.add_linkorders" + , "target.add_linkgroups" + } apis.paths = { -- target.set_xxx "target.set_pcheader" |
