summaryrefslogtreecommitdiff
path: root/xmake/core/project/option.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2017-05-12 11:03:34 +0800
committerruki <[email protected]>2017-05-12 11:03:34 +0800
commit2cfd41ae2fe1c008e9572538ebf90e5f898513f9 (patch)
treeab1186b3705253ce7f1130b12ce3008fa34a524a /xmake/core/project/option.lua
parent149d26d8fefd4d3dbba882131b926f4a852e336c (diff)
add includes and links from target deps automatically
Diffstat (limited to 'xmake/core/project/option.lua')
-rw-r--r--xmake/core/project/option.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/xmake/core/project/option.lua b/xmake/core/project/option.lua
index e4e408d90..72cc0d750 100644
--- a/xmake/core/project/option.lua
+++ b/xmake/core/project/option.lua
@@ -484,6 +484,12 @@ function option:get(infoname)
return self._INFO[infoname]
end
+-- get option deps
+function option:deps()
+ -- TODO in the future
+ return {}
+end
+
-- save the option info to the cache
function option:save()