diff options
| author | ruki <[email protected]> | 2023-03-18 00:40:10 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-03-18 00:40:10 +0800 |
| commit | 2330f270a9fad2dfd8ec96227cd4d71c3dcbcfd8 (patch) | |
| tree | d532801b5be9fc9634d344e09caf9625ff135b45 /xmake/core/project/target.lua | |
| parent | 21f980d98c09362721ccd48f42a6fa5508cf4375 (diff) | |
fix comments
Diffstat (limited to 'xmake/core/project/target.lua')
| -rw-r--r-- | xmake/core/project/target.lua | 18 |
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 -- |
