summaryrefslogtreecommitdiff
path: root/xmake/languages/c++/load.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/languages/c++/load.lua')
-rw-r--r--xmake/languages/c++/load.lua7
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"