diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-12-27 18:03:01 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-12-27 18:03:01 (GMT) |
commit | 79479233d461c309d687a92fd276dcb1bfc9d101 (patch) | |
tree | 87c63324514753a202ffeeaa171e2a8c8ca4f566 /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | 452925649a619256e509ed19bb7c41af1d643deb (diff) | |
download | CMake-79479233d461c309d687a92fd276dcb1bfc9d101.zip CMake-79479233d461c309d687a92fd276dcb1bfc9d101.tar.gz CMake-79479233d461c309d687a92fd276dcb1bfc9d101.tar.bz2 |
ENH: remove warning
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index f446bc7..1c24934 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -504,7 +504,11 @@ cmLocalUnixMakefileGenerator3 //---------------------------------------------------------------------------- std::string cmLocalUnixMakefileGenerator3 -::GetFrameworkFlags(cmTarget& target) +::GetFrameworkFlags(cmTarget& +#ifdef __APPLE__ + target +#endif + ) { #ifndef __APPLE__ return std::string(); |