使用 cmake 和命令行构建 MSVC 项目
再会!
让我们有一个源文件 main.cpp
和一个包含以下文本的 CMakeLists.txt
文件:
cmake_minimum_required(VERSION 2.6)
project(tmp)
set(CMAKE_CXX_FLAGS "-Wall")
add_executable(tmp.elf main.cpp)
假设 main.cpp
文件包含简单的“你好,世界!”程序:
#include <stdio.h>
int main()
{
printf("Hello, World!\n");
return 0;
}
我们可以使用cmake CMakeLists.txt && 构建项目制作
。然后我们将获得可以运行的 tmp.elf 文件。或者我们无法获取 tmp.elf 文件并假设 main.cpp 源文件有问题(假设编译器和 cmake 已正确安装在构建系统上) 。
那么,问题是:我们如何在 Windows 计算机上执行相同的操作?例如,运行cmake CMakeLists.txt
后我们将获得tmp.vcproj
文件,然后我们需要以某种方式构建它。如何使用命令行执行构建过程? (Java 的 Process.start(),实际上是 :-P )
Good day!
Let us have a source file main.cpp
and a CMakeLists.txt
file containing the next text:
cmake_minimum_required(VERSION 2.6)
project(tmp)
set(CMAKE_CXX_FLAGS "-Wall")
add_executable(tmp.elf main.cpp)
Let's say the main.cpp
file contains a simple "Hello, World!" program:
#include <stdio.h>
int main()
{
printf("Hello, World!\n");
return 0;
}
We can build the project with cmake CMakeLists.txt && make
. Then we'll just get the tmp.elf
file which we can just run. Or we can get no tmp.elf
file and assume that something is wrong with the main.cpp
source file (assuming the compiler and cmake are installed properly on the building system).
So, the question is: how can we do the same on the Windows machine? E.g. we will get the tmp.vcproj
file after running cmake CMakeLists.txt
and then we need to build it somehow. How the build process can be performed using command-line? (Java's Process.start(), actually :-P )
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过使用
--build
选项调用 cmake,以独立于平台和 CMake 生成器的方式启动构建:对于多配置生成器,您可以通过以下方式指定配置:
另请参阅 < href="https://cmake.org/cmake/help/latest/manual/cmake.1.html#build-tool-mode" rel="noreferrer">文档。
You can start the build in a platform and CMake generator independent fashion by invoking cmake with the
--build
option:For multi-configuration generators, you can specify the configuration in the following way:
Also see the documentation.