我正在尝试使用CMake编译PietCreator,但是我得到了各种错误代码。我该如何解决这个问题?
错误代码:
Compiling the C compiler identification source file "CMakeCCompilerId.c"failed.
Compiler:
Build flags:
Id flags:
The output was:
The system can not find the file specified
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" failed.
Compiler:
Build flags:
Id flags:
The output was:
The system can not find the file specified
以下是来源:https://github.com/Ramblurr/PietCreator
在Windows 8.1 64x上使用CMake 3.3.0和Visual Studio 14 2015 Win64进行编译
答案 0 :(得分:1)
使用CMake构建项目文件时,必须确保安装所有依赖项,并且(通常)使用在构建项目文件的任何源代码的文档中建议的编译器。在这种情况下,您需要安装Qt 4.x以及Visual C ++ 2008编译器。执行此操作后,您应该能够告诉CMake使用该版本编译器,在GUI的主窗口(或命令行)中设置QT 4.x目录,并创建.sln文件。