diff options
author | Brad King <brad.king@kitware.com> | 2013-01-11 16:32:13 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-01-11 16:32:13 (GMT) |
commit | c0c8ef85fc8d65a47abfd293031bcde91e7ee930 (patch) | |
tree | b6757f134e0f5ba48b6fe656d55a97eeb60535d5 /Source/cmTarget.h | |
parent | ffe93315a2554c16f7bb46a35a848602cea229f9 (diff) | |
parent | 77d26467848fd689fbbffbaa302d041aa2365b15 (diff) | |
download | CMake-c0c8ef85fc8d65a47abfd293031bcde91e7ee930.zip CMake-c0c8ef85fc8d65a47abfd293031bcde91e7ee930.tar.gz CMake-c0c8ef85fc8d65a47abfd293031bcde91e7ee930.tar.bz2 |
Merge topic 'LINK_INTERFACE_LIBRARIES-genex'
77d2646 Allow generator expressions in LINK_INTERFACE_LIBRARIES.
94aeaf7 Split LINK_INTERFACE_LIBRARIES export handling into dedicated method.
a3aedb8 Split the generator expression before extracting targets.
b6036d1 Extract the AddTargetNamespace method.
cb1afbf Don't pass a position when determining if a target name is a literal.
f99196d Add cmGeneratorExpression::Split() API.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 1188a6a..b4d053d 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -258,7 +258,9 @@ public: // Needed only for OLD behavior of CMP0003. std::vector<std::string> WrongConfigLibraries; - LinkInterface(): Multiplicity(0) {} + bool ImplementationIsInterface; + + LinkInterface(): Multiplicity(0), ImplementationIsInterface(false) {} }; /** Get the link interface for the given configuration. Returns 0 |