diff options
| author | ruki <[email protected]> | 2018-04-28 17:29:37 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2018-04-28 17:29:37 +0800 |
| commit | a896aa649265af0f7a73e7c8a1b428fb342fad87 (patch) | |
| tree | b2af34bc470e0a21bae87412323eddf8bf0e6318 /xmake/platforms/windows/xmake.lua | |
| parent | a39107c492d254b4b2c26be69956c61a42e21702 (diff) | |
impl find_wdk
Diffstat (limited to 'xmake/platforms/windows/xmake.lua')
| -rw-r--r-- | xmake/platforms/windows/xmake.lua | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/xmake/platforms/windows/xmake.lua b/xmake/platforms/windows/xmake.lua index f17c4ef7e..4d8680e26 100644 --- a/xmake/platforms/windows/xmake.lua +++ b/xmake/platforms/windows/xmake.lua @@ -89,21 +89,25 @@ platform("windows") set_menu { config = { - {category = "Visual Studio SDK Configuration" } - , {nil, "vs", "kv", "auto", "The Microsoft Visual Studio" } - , {category = "Cuda SDK Configuration" } - , {nil, "cuda", "kv", "auto", "The Cuda SDK Directory" } - , {category = "Qt SDK Configuration" } - , {nil, "qt", "kv", "auto", "The Qt SDK Directory" } - , {nil, "qt_sdkver","kv", "auto", "The Qt SDK Version" } + {category = "Visual Studio SDK Configuration" } + , {nil, "vs", "kv", "auto", "The Microsoft Visual Studio" } + , {category = "Cuda SDK Configuration" } + , {nil, "cuda", "kv", "auto", "The Cuda SDK Directory" } + , {category = "Qt SDK Configuration" } + , {nil, "qt", "kv", "auto", "The Qt SDK Directory" } + , {nil, "qt_sdkver", "kv", "auto", "The Qt SDK Version" } + , {category = "WDK Configuration" } + , {nil, "wdk", "kv", "auto", "The WDK Directory" } + , {nil, "wdk_sdkver","kv", "auto", "The WDK Version" } } , global = { - { } - , {nil, "vs", "kv", "auto", "The Microsoft Visual Studio" } - , {nil, "cuda", "kv", "auto", "The Cuda SDK Directory" } - , {nil, "qt", "kv", "auto", "The Qt SDK Directory" } + { } + , {nil, "vs", "kv", "auto", "The Microsoft Visual Studio" } + , {nil, "cuda", "kv", "auto", "The Cuda SDK Directory" } + , {nil, "qt", "kv", "auto", "The Qt SDK Directory" } + , {nil, "wdk", "kv", "auto", "The WDK Directory" } } } |
