diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-17 18:50:24 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-18 12:54:31 (GMT) |
commit | a02d792c6e9bf9200ab652db6b6da415d80b578c (patch) | |
tree | 6c9d224ad9d3f53ca53cbf0e51b7092834c4308d /Source/cmTarget.cxx | |
parent | 008c09d6db60f7c24781b47414ffa26edbd0e22d (diff) | |
download | CMake-a02d792c6e9bf9200ab652db6b6da415d80b578c.zip CMake-a02d792c6e9bf9200ab652db6b6da415d80b578c.tar.gz CMake-a02d792c6e9bf9200ab652db6b6da415d80b578c.tar.bz2 |
cxxmodules: add properties to control scanning
The `CXX_SCAN_FOR_MODULES` property may be used to control scanning for
targets and for source files rather than assuming "C++20 always needs to
be scanned".
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 2955d7c..70a624d 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -526,6 +526,7 @@ cmTarget::cmTarget(std::string const& name, cmStateEnums::TargetType type, initProp("ANDROID_ANT_ADDITIONAL_OPTIONS"); initProp("BUILD_RPATH"); initProp("BUILD_RPATH_USE_ORIGIN"); + initProp("CXX_SCAN_FOR_MODULES"); initProp("INSTALL_NAME_DIR"); initProp("INSTALL_REMOVE_ENVIRONMENT_RPATH"); initPropValue("INSTALL_RPATH", ""); |