| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /*=========================================================================
- Program: CMake - Cross-Platform Makefile Generator
- Module: $RCSfile$
- Language: C++
- Date: $Date$
- Version: $Revision$
- Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
- See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
- This software is distributed WITHOUT ANY WARRANTY; without even
- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- PURPOSE. See the above copyright notices for more information.
- =========================================================================*/
- #include "cmLocalVisualStudioGenerator.h"
- #include "cmMakefile.h"
- #include "cmSourceFile.h"
- #include "cmSystemTools.h"
- //----------------------------------------------------------------------------
- cmLocalVisualStudioGenerator::cmLocalVisualStudioGenerator()
- {
- }
- //----------------------------------------------------------------------------
- cmLocalVisualStudioGenerator::~cmLocalVisualStudioGenerator()
- {
- }
- //----------------------------------------------------------------------------
- void cmLocalVisualStudioGenerator::ComputeObjectNameRequirements
- (std::vector<cmSourceGroup> const& sourceGroups)
- {
- // Clear the current set of requirements.
- this->NeedObjectName.clear();
- // Count the number of object files with each name.
- std::map<cmStdString, int> objectNameCounts;
- for(unsigned int i = 0; i < sourceGroups.size(); ++i)
- {
- cmSourceGroup sg = sourceGroups[i];
- std::vector<const cmSourceFile*> const& srcs = sg.GetSourceFiles();
- for(std::vector<const cmSourceFile*>::const_iterator s = srcs.begin();
- s != srcs.end(); ++s)
- {
- const cmSourceFile& sf = *(*s);
- if(!sf.GetCustomCommand() &&
- !sf.GetPropertyAsBool("HEADER_FILE_ONLY") &&
- !sf.GetPropertyAsBool("EXTERNAL_OBJECT"))
- {
- std::string objectName =
- cmSystemTools::GetFilenameWithoutLastExtension(
- sf.GetFullPath().c_str());
- objectName += ".obj";
- objectNameCounts[objectName] += 1;
- }
- }
- }
- // For all source files producing duplicate names we need unique
- // object name computation.
- for(unsigned int i = 0; i < sourceGroups.size(); ++i)
- {
- cmSourceGroup sg = sourceGroups[i];
- std::vector<const cmSourceFile*> const& srcs = sg.GetSourceFiles();
- for(std::vector<const cmSourceFile*>::const_iterator s = srcs.begin();
- s != srcs.end(); ++s)
- {
- const cmSourceFile* sf = *s;
- if(!sf->GetCustomCommand() &&
- !sf->GetPropertyAsBool("HEADER_FILE_ONLY") &&
- !sf->GetPropertyAsBool("EXTERNAL_OBJECT"))
- {
- std::string objectName =
- cmSystemTools::GetFilenameWithoutLastExtension(
- sf->GetFullPath().c_str());
- objectName += ".obj";
- if(objectNameCounts[objectName] > 1)
- {
- this->NeedObjectName.insert(sf);
- }
- }
- }
- }
- }
|