35936433e1
CMake-SourceFile2-bp and CMake-SourceFile2-b-mp1 to trunk. This commit is surrounded by tags CMake-SourceFile2-b-mp1-pre and CMake-SourceFile2-b-mp1-post on the trunk. The changes re-implement cmSourceFile and the use of it to allow instances to be created much earlier. The use of cmSourceFileLocation allows locating a source file referenced by a user to be much simpler and more robust. The two SetName methods are no longer needed so some duplicate code has been removed. The strange "SourceName" stuff is gone. Code that created cmSourceFile instances on the stack and then sent them to cmMakefile::AddSource has been simplified and converted to getting cmSourceFile instances from cmMakefile. The CPluginAPI has preserved the old API through a compatibility interface. Source lists are gone. Targets now get real instances of cmSourceFile right away instead of storing a list of strings until the final pass. TraceVSDependencies has been re-written to avoid the use of SourceName. It is now called TraceDependencies since it is not just for VS. It is now implemented with a helper object which makes the code simpler.
87 lines
2.8 KiB
C++
87 lines
2.8 KiB
C++
/*=========================================================================
|
|
|
|
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 "cmAuxSourceDirectoryCommand.h"
|
|
#include "cmSourceFile.h"
|
|
|
|
#include <cmsys/Directory.hxx>
|
|
|
|
// cmAuxSourceDirectoryCommand
|
|
bool cmAuxSourceDirectoryCommand::InitialPass
|
|
(std::vector<std::string> const& args)
|
|
{
|
|
if(args.size() < 2 || args.size() > 2)
|
|
{
|
|
this->SetError("called with incorrect number of arguments");
|
|
return false;
|
|
}
|
|
|
|
std::string sourceListValue;
|
|
std::string templateDirectory = args[0];
|
|
this->Makefile->AddExtraDirectory(templateDirectory.c_str());
|
|
std::string tdir = this->Makefile->GetCurrentDirectory();
|
|
tdir += "/";
|
|
tdir += templateDirectory;
|
|
|
|
// was the list already populated
|
|
const char *def = this->Makefile->GetDefinition(args[1].c_str());
|
|
if (def)
|
|
{
|
|
sourceListValue = def;
|
|
}
|
|
|
|
// Load all the files in the directory
|
|
cmsys::Directory dir;
|
|
if(dir.Load(tdir.c_str()))
|
|
{
|
|
size_t numfiles = dir.GetNumberOfFiles();
|
|
for(size_t i =0; i < numfiles; ++i)
|
|
{
|
|
std::string file = dir.GetFile(static_cast<unsigned long>(i));
|
|
// Split the filename into base and extension
|
|
std::string::size_type dotpos = file.rfind(".");
|
|
if( dotpos != std::string::npos )
|
|
{
|
|
std::string ext = file.substr(dotpos+1);
|
|
std::string base = file.substr(0, dotpos);
|
|
// Process only source files
|
|
if( base.size() != 0
|
|
&& std::find( this->Makefile->GetSourceExtensions().begin(),
|
|
this->Makefile->GetSourceExtensions().end(), ext )
|
|
!= this->Makefile->GetSourceExtensions().end() )
|
|
{
|
|
std::string fullname = templateDirectory;
|
|
fullname += "/";
|
|
fullname += file;
|
|
// add the file as a class file so
|
|
// depends can be done
|
|
cmSourceFile* sf =
|
|
this->Makefile->GetOrCreateSource(fullname.c_str());
|
|
sf->SetProperty("ABSTRACT","0");
|
|
if(!sourceListValue.empty())
|
|
{
|
|
sourceListValue += ";";
|
|
}
|
|
sourceListValue += fullname;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
this->Makefile->AddDefinition(args[1].c_str(), sourceListValue.c_str());
|
|
return true;
|
|
}
|
|
|