diff options
| author | ruki <[email protected]> | 2015-05-27 09:32:01 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2015-05-27 09:32:01 +0800 |
| commit | 3aab30fc254ae7e9bd138aff2bb263af0d447017 (patch) | |
| tree | bd9e4c95b0e0be22655238f9d51102ac0f48822f /xmake/scripts/platform/windows/_windows.lua | |
| parent | 80f92040764d0e4d6c89c5f8d82f4a8dc1b54902 (diff) | |
add prober to all platforms
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) |
