diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-07 23:18:42 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-12 16:39:58 (GMT) |
commit | ceb35b63a796235bb76284b3fb4046208365e23f (patch) | |
tree | f023761134dfe519e9faa11139b844d141c582bf /Source/cmLinkItem.h | |
parent | bf2d061ad37088be9ea6f135a980d14c4e76064b (diff) | |
download | CMake-ceb35b63a796235bb76284b3fb4046208365e23f.zip CMake-ceb35b63a796235bb76284b3fb4046208365e23f.tar.gz CMake-ceb35b63a796235bb76284b3fb4046208365e23f.tar.bz2 |
cmLinkItem: Port to cmGeneratorTarget.
Diffstat (limited to 'Source/cmLinkItem.h')
-rw-r--r-- | Source/cmLinkItem.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/cmLinkItem.h b/Source/cmLinkItem.h index 33780a7..b875cc0 100644 --- a/Source/cmLinkItem.h +++ b/Source/cmLinkItem.h @@ -16,7 +16,6 @@ #include "cmListFileCache.h" class cmGeneratorTarget; -class cmTarget; // Basic information about each link item. class cmLinkItem: public std::string @@ -25,9 +24,9 @@ class cmLinkItem: public std::string public: cmLinkItem(): std_string(), Target(0) {} cmLinkItem(const std_string& n, - cmTarget const* t): std_string(n), Target(t) {} + cmGeneratorTarget const* t): std_string(n), Target(t) {} cmLinkItem(cmLinkItem const& r): std_string(r), Target(r.Target) {} - cmTarget const* Target; + cmGeneratorTarget const* Target; }; class cmLinkImplItem: public cmLinkItem @@ -35,7 +34,7 @@ class cmLinkImplItem: public cmLinkItem public: cmLinkImplItem(): cmLinkItem(), Backtrace(), FromGenex(false) {} cmLinkImplItem(std::string const& n, - cmTarget const* t, + cmGeneratorTarget const* t, cmListFileBacktrace const& bt, bool fromGenex): cmLinkItem(n, t), Backtrace(bt), FromGenex(fromGenex) {} |