PietCreator C++ 无法编译
PietCreator C++ won't compile
我正在尝试使用 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
使用 CMake 3.3.0 和 Visual Studio 14 2015 Win64 在 Windows 8.1 64x
上编译
使用 CMake 构建项目文件时,您必须确保安装所有依赖项,并且(通常)使用您为其构建项目文件的任何源代码的文档中建议的编译器。在这种情况下,您需要安装 Qt 4.x 以及 Visual C++ 2008 编译器。这样做之后,您应该能够告诉 CMake 使用该版本的编译器,在 GUI 的主 window 中设置 QT 4.x 目录(或通过命令行),并拥有您的 .sln 文件已创建。
我正在尝试使用 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
使用 CMake 3.3.0 和 Visual Studio 14 2015 Win64 在 Windows 8.1 64x
上编译使用 CMake 构建项目文件时,您必须确保安装所有依赖项,并且(通常)使用您为其构建项目文件的任何源代码的文档中建议的编译器。在这种情况下,您需要安装 Qt 4.x 以及 Visual C++ 2008 编译器。这样做之后,您应该能够告诉 CMake 使用该版本的编译器,在 GUI 的主 window 中设置 QT 4.x 目录(或通过命令行),并拥有您的 .sln 文件已创建。