使用 cmake 和命令行构建 MSVC 项目

发布于 2024-12-21 15:54:49 字数 745 浏览 0 评论 0原文

再会!

让我们有一个源文件 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

春夜浅 2024-12-28 15:54:49

您可以通过使用 --build 选项调用 cmake,以独立于平台和 CMake 生成器的方式启动构建:

cmake --build .

对于多配置生成器,您可以通过以下方式指定配置:

cmake --build . --config Release

另请参阅 < 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:

cmake --build .

For multi-configuration generators, you can specify the configuration in the following way:

cmake --build . --config Release

Also see the documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文