- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我不需要 ALL_BUILD 子项目,我可以避免生成它吗?谢谢。
最佳答案
CMake Issue #16979: "ALL_BUILD target being generated" :
The
ALL_BUILD
target corresponds to CMake's notion of the "all" target, equivalent to make all with makefile generators. This is different from "Build Solution" behavior due to idiosyncrasies in how the VS IDE deals with inter-vcxproj dependencies.There is no way to suppress the
ALL_BUILD
target. It must exist for commands likecmake --build
. to be able to build the "all" target by default.
USE_FOLDERS
属性(property) set_property(GLOBAL PROPERTY USE_FOLDERS ON)
通用目标 ALL_BUILD
, ZERO_CHECK
, INSTALL
, PACKAGE
和 RUN_TESTS
将被分组到 CMakePredefinedTargets
文件夹(或全局 PREDEFINED_TARGETS_FOLDER
属性中给出的任何名称)。CMAKE_SKIP_INSTALL_ALL_DEPENDENCY
和 CMAKE_SKIP_PACKAGE_ALL_DEPENDENCY
禁止为 INSTALL
自动生成依赖项或 PACKAGE
到 ALL_BUILD
目标。VS_STARTUP_PROJECT
属性可用于将默认启动项目名称更改为 ALL_BUILD
以外的名称。或“第一个不在子文件夹中的项目”目标。关于cmake - 是否可以不在 cmake 中生成 ALL_BUILD 项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49069493/
我不需要 ALL_BUILD 子项目,我可以避免生成它吗?谢谢。 最佳答案 CMake Issue #16979: "ALL_BUILD target being generated" : The A
我创建了一个简单的 CMakeLists.txt: cmake_minimum_required(VERSION 2.8) project (HelloWorld) add_executable (H
我目前正在使用 CMake 创建一堆 Visual Studio 2013 项目并且它可以工作。 但是,自动创建的 ZERO_CHECK 和 ALL_BUILD 项目默认设置为使用 MBCS,尽管我希
我是一名优秀的程序员,十分优秀!