diff options
Diffstat (limited to 'xmake/scripts/platform/windows/_windows.lua')
| -rw-r--r-- | xmake/scripts/platform/windows/_windows.lua | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/xmake/scripts/platform/windows/_windows.lua b/xmake/scripts/platform/windows/_windows.lua index bda11aa07..394846872 100644 --- a/xmake/scripts/platform/windows/_windows.lua +++ b/xmake/scripts/platform/windows/_windows.lua @@ -23,11 +23,17 @@ -- define module: _windows local _windows = _windows or {} +-- load modules +local config = require("base/config") + -- init host -_windows._HOST = "windows" +_windows._HOST = "windows" -- init architectures -_windows._ARCHS = {"x86", "x64"} +_windows._ARCHS = {"x86", "x64"} + +-- init prober +_windows._PROBER = require("platform/windows/_prober") -- make configure function _windows.make(configs) |
