summaryrefslogtreecommitdiff
path: root/xmake/core/project/option.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2016-07-10 10:18:05 +0800
committerruki <[email protected]>2016-07-10 10:18:05 +0800
commitfd39adb3d959e605370098a72ec7e92b462fce62 (patch)
tree392b866ab32e33cae167c95daa7bff7cfbb9767c /xmake/core/project/option.lua
parent4d2231a5136ddf5dca5398feaccc2d82bb56e1e0 (diff)
check include dependence
Diffstat (limited to 'xmake/core/project/option.lua')
-rw-r--r--xmake/core/project/option.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmake/core/project/option.lua b/xmake/core/project/option.lua
index 1d554d887..af727808f 100644
--- a/xmake/core/project/option.lua
+++ b/xmake/core/project/option.lua
@@ -94,7 +94,7 @@ function option:_check_include(include, srcpath, objpath)
end
-- attempt to run this command
- local ok, errors = instance:compile(srcpath, objpath, self)
+ local ok, errors = instance:compile(srcpath, objpath, nil, self)
if not ok and option_.get("verbose") then
print(errors)
end
@@ -148,7 +148,7 @@ function option:_check_function(checkcode, srcpath, objpath)
srcfile:close()
-- execute the compile command
- local ok, errors = instance:compile(srcpath, objpath, self)
+ local ok, errors = instance:compile(srcpath, objpath, nil, self)
if not ok and option_.get("verbose") then
print(errors)
end
@@ -202,7 +202,7 @@ function option:_check_typedef(typedef, srcpath, objpath)
srcfile:close()
-- execute the compile command
- local ok, errors = instance:compile(srcpath, objpath, self)
+ local ok, errors = instance:compile(srcpath, objpath, nil, self)
if not ok and option_.get("verbose") then
print(errors)
end