diff options
Diffstat (limited to 'xmake/core/action/config.lua')
| -rw-r--r-- | xmake/core/action/config.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xmake/core/action/config.lua b/xmake/core/action/config.lua index 825d97a25..741eb49e9 100644 --- a/xmake/core/action/config.lua +++ b/xmake/core/action/config.lua @@ -25,6 +25,7 @@ local action_config = action_config or {} -- load modules local utils = require("base/utils") +local option = require("base/option") local config = require("base/config") local project = require("base/project") local makefile = require("base/makefile") @@ -47,7 +48,7 @@ end function action_config.done() -- the options - local options = xmake._OPTIONS + local options = option.options() assert(options) -- check target |
