summaryrefslogtreecommitdiff
path: root/xmake/core/project/target.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/core/project/target.lua')
-rw-r--r--xmake/core/project/target.lua18
1 files changed, 9 insertions, 9 deletions
diff --git a/xmake/core/project/target.lua b/xmake/core/project/target.lua
index 549f18301..c1764ff0f 100644
--- a/xmake/core/project/target.lua
+++ b/xmake/core/project/target.lua
@@ -2255,7 +2255,7 @@ end
-- has the given c funcs?
--
-- @param funcs the funcs
--- @param opt the argument options, e.g. { includes = ""}
+-- @param opt the argument options, e.g. {includes = "xxx.h", configs = {defines = ""}}
--
-- @return true or false, errors
--
@@ -2268,7 +2268,7 @@ end
-- has the given c++ funcs?
--
-- @param funcs the funcs
--- @param opt the argument options, e.g. { includes = ""}
+-- @param opt the argument options, e.g. {includes = "xxx.h", configs = {defines = ""}}
--
-- @return true or false, errors
--
@@ -2281,7 +2281,7 @@ end
-- has the given c types?
--
-- @param types the types
--- @param opt the argument options, e.g. { defines = ""}
+-- @param opt the argument options, e.g. {configs = {defines = ""}}
--
-- @return true or false, errors
--
@@ -2293,8 +2293,8 @@ end
-- has the given c++ types?
--
--- @param types the types
--- @param opt the argument options, e.g. { defines = ""}
+-- @param types the types
+-- @param opt the argument options, e.g. {configs = {defines = ""}}
--
-- @return true or false, errors
--
@@ -2307,7 +2307,7 @@ end
-- has the given c includes?
--
-- @param includes the includes
--- @param opt the argument options, e.g. { defines = ""}
+-- @param opt the argument options, e.g. {configs = {defines = ""}}
--
-- @return true or false, errors
--
@@ -2320,7 +2320,7 @@ end
-- has the given c++ includes?
--
-- @param includes the includes
--- @param opt the argument options, e.g. { defines = ""}
+-- @param opt the argument options, e.g. {configs = {defines = ""}}
--
-- @return true or false, errors
--
@@ -2370,7 +2370,7 @@ end
-- check the given c snippets?
--
-- @param snippets the snippets
--- @param opt the argument options, e.g. { includes = ""}
+-- @param opt the argument options, e.g. {includes = "xxx.h", configs = {defines = ""}}
--
-- @return true or false, errors
--
@@ -2383,7 +2383,7 @@ end
-- check the given c++ snippets?
--
-- @param snippets the snippets
--- @param opt the argument options, e.g. { includes = ""}
+-- @param opt the argument options, e.g. {includes = "xxx.h", configs = {defines = ""}}
--
-- @return true or false, errors
--