[cmake-commits] king committed cmExportFileGenerator.cxx 1.7 1.8
cmExportFileGenerator.h 1.5 1.6
cmake-commits at cmake.org
cmake-commits at cmake.org
Thu Jan 31 06:51:46 EST 2008
Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv24771
Modified Files:
cmExportFileGenerator.cxx cmExportFileGenerator.h
Log Message:
COMP: Remove unused parameter.
Index: cmExportFileGenerator.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmExportFileGenerator.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- cmExportFileGenerator.h 30 Jan 2008 22:25:52 -0000 1.5
+++ cmExportFileGenerator.h 31 Jan 2008 11:51:43 -0000 1.6
@@ -70,8 +70,7 @@
void SetImportLinkProperties(const char* config,
std::string const& suffix, cmTarget* target,
ImportPropertyMap& properties);
- void SetImportLinkProperties(const char* config,
- std::string const& suffix,
+ void SetImportLinkProperties(std::string const& suffix,
cmTarget* target,
std::vector<std::string> const& libs,
ImportPropertyMap& properties);
Index: cmExportFileGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmExportFileGenerator.cxx,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- cmExportFileGenerator.cxx 30 Jan 2008 22:57:54 -0000 1.7
+++ cmExportFileGenerator.cxx 31 Jan 2008 11:51:43 -0000 1.8
@@ -139,8 +139,7 @@
target->GetLinkInterface(config))
{
// This target provides a link interface, so use it.
- this->SetImportLinkProperties(config, suffix, target,
- *interface, properties);
+ this->SetImportLinkProperties(suffix, target, *interface, properties);
}
else if(target->GetType() == cmTarget::STATIC_LIBRARY ||
target->GetType() == cmTarget::SHARED_LIBRARY)
@@ -184,15 +183,13 @@
}
// Store the entries in the property.
- this->SetImportLinkProperties(config, suffix, target,
- actual_libs, properties);
+ this->SetImportLinkProperties(suffix, target, actual_libs, properties);
}
//----------------------------------------------------------------------------
void
cmExportFileGenerator
-::SetImportLinkProperties(const char* config,
- std::string const& suffix,
+::SetImportLinkProperties(std::string const& suffix,
cmTarget* target,
std::vector<std::string> const& libs,
ImportPropertyMap& properties)
More information about the Cmake-commits
mailing list