本文主要是介绍【CMake】unable to find a build program corresponding to Ninja 问题解决,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
【CMAKE】CMake Error: CMake was unable to find a build program corresponding to "Ninja"
CMake 构建错误
CMake 构建时
cmake -S. -B. ./build -G"Ninja" ...
构建失败,报了这样一个错误,完整报错为
CMake Error: CMake was unable to find a build program corresponding to "Ninja". CMAKE_MAKE_PROGRAM is not set. You probably need to select a different build tool.
CMake Error: CMAKE_CXX_COMPILER not set, after EnableLanguage
CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage
-- Configuration incomplete, errors occurred!
See also ".../build/CMakeFiles/CMakeOutput.log"
解决方法
在网上找了很多 有的说 Android 什么的,有的是 Ubuntu 的解决方案,我这里是 Windows 平台开发环境用的 Visual Studio 2019。
解决方法,缺少一个环境变量,添加进去就行了
VS2019INSTALLDIR="C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise"
注: 不同的电脑上 Visual Studio 的安装路径或可能不同,根据自己的情况设置。
再次 CMake 运行成功。
这篇关于【CMake】unable to find a build program corresponding to Ninja 问题解决的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!