What are ALL_BUILD and ZERO_CHECK and do I need them?(什么是 ALL_BUILD 和 ZERO_CHECK,我需要它们吗?)
问题描述
我创建了一个简单的 CMakeLists.txt:
I've created a simple CMakeLists.txt:
cmake_minimum_required(VERSION 2.8)
project (HelloWorld)
add_executable (HelloWorld main.cpp)
然而,当我从 CMake 生成 VS2012 或 VS2010 项目时,我得到了这两个额外的条目 - ALL_BUILD 和 ZERO_CHECK.我不明白他们的目的,我需要他们吗?
When I generate a VS2012 or VS2010 project from CMake, however, I get these 2 additional entries - ALL_BUILD and ZERO_CHECK. I don't understand their purpose, do I need them?
推荐答案
来自 https://cmake.org/pipermail/cmake/2008-November/025448.html:
Armin Berres — 2008 年 11 月 22 日下午 3:12:41
Armin Berres — 11/22/2008, 3:12:41 PM
ZERO_CHECK 将重新运行 cmake.您可以/应该在之后执行此操作更改 CMake 文件中的某些内容.
ZERO_CHECK will rerun cmake. You can/should execute this after changing something on your CMake files.
ALL_BUILD 只是一个构建所有项目的目标在主动解决方案中,我想可以将其与全部解决"进行比较.
ALL_BUILD is simply a target which builds all and everything project in the active solution, I guess one can compare it to "make all".
这篇关于什么是 ALL_BUILD 和 ZERO_CHECK,我需要它们吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:什么是 ALL_BUILD 和 ZERO_CHECK,我需要它们吗?
基础教程推荐
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01