2017-08-04 150 views
0

我目前具有不能夠生成/編譯使用CMake的UWP項目代碼視覺工作室2017年企業版的問題,的Visual Studio 2017年CMake的問題與UWP項目

的錯誤: - 一個Windows Store組件與CMake需要Windows桌面SDK 以及Windows Store '10.0'SDK。請確保你有 都安裝

我已經跟蹤了一段時間的問題搜索似乎CMake visual studio的版本正在使用不能正確找到Windows 10 SDK或Windows桌面SDK,我試圖交換版本的cmake VS2017正在使用較新的版本,例如(我試過3.8和3.9)都在一定程度上工作,直到在cmake目標信息提取的輸出中發佈解析錯誤。

,我發現其中的原因是因爲VS2017使用CMake的定製版 - 3.7.20170106-gd3236-髒MSVC_2

沒有任何人有周圍的工作得到UWP項目,2017年VS CMake的工作。

回答

0

看起來這是一個已知的問題。

The 3.7.2 version of CMake bundled with Visual Studio 2017 (latest update) cannot on its own find the Visual Studio 2017 build tools. Using CMake 3.8.1 (current CMake release), the tools can be found no problem.

你可以從這裏看到更詳細的信息:Visual Studio 2017 CMake Build Tools Bug

所以,請儘量使用CMake 3.8

相關問題