summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorExpressionDAGChecker.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-06-05 11:43:54 (GMT)
committerStephen Kelly <steveire@gmail.com>2013-07-07 22:00:18 (GMT)
commitddde61c0b2b46a452366acae690aca0095c0a49c (patch)
treec7b7e9acd24c0f5ba4cca44a12b120cf6720caf9 /Source/cmGeneratorExpressionDAGChecker.h
parent5aa9731c9fa06ca51df1e8bdd5f8625d0ce3776d (diff)
downloadCMake-ddde61c0b2b46a452366acae690aca0095c0a49c.zip
CMake-ddde61c0b2b46a452366acae690aca0095c0a49c.tar.gz
CMake-ddde61c0b2b46a452366acae690aca0095c0a49c.tar.bz2
Introduce the LINK_ONLY generator expression.
This is an internal expression for use by target_link_libraries for static libraries.
Diffstat (limited to 'Source/cmGeneratorExpressionDAGChecker.h')
-rw-r--r--Source/cmGeneratorExpressionDAGChecker.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmGeneratorExpressionDAGChecker.h b/Source/cmGeneratorExpressionDAGChecker.h
index 95d466a..06b23f9 100644
--- a/Source/cmGeneratorExpressionDAGChecker.h
+++ b/Source/cmGeneratorExpressionDAGChecker.h
@@ -54,6 +54,10 @@ struct cmGeneratorExpressionDAGChecker
CM_FOR_EACH_TRANSITIVE_PROPERTY_METHOD(DECLARE_TRANSITIVE_PROPERTY_METHOD)
+ bool GetTransitivePropertiesOnly();
+ void SetTransitivePropertiesOnly()
+ { this->TransitivePropertiesOnly = true; }
+
private:
Result checkGraph() const;
@@ -65,6 +69,7 @@ private:
const GeneratorExpressionContent * const Content;
const cmListFileBacktrace Backtrace;
Result CheckResult;
+ bool TransitivePropertiesOnly;
};
#endif