2001-01-11 22:47:38 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-01-11 22:47:38 +03:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-01-11 22:47:38 +03:00
|
|
|
|
2002-01-21 23:30:43 +03:00
|
|
|
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.
|
2001-01-11 22:47:38 +03:00
|
|
|
|
|
|
|
=========================================================================*/
|
2001-01-18 19:20:24 +03:00
|
|
|
#include "cmAuxSourceDirectoryCommand.h"
|
2002-09-28 00:24:10 +04:00
|
|
|
#include "cmSourceFile.h"
|
2001-01-05 19:41:20 +03:00
|
|
|
|
2003-06-23 16:58:58 +04:00
|
|
|
#include <cmsys/Directory.hxx>
|
|
|
|
|
2001-01-18 19:20:24 +03:00
|
|
|
// cmAuxSourceDirectoryCommand
|
2006-05-10 21:50:44 +04:00
|
|
|
bool cmAuxSourceDirectoryCommand::InitialPass
|
2008-01-23 18:28:26 +03:00
|
|
|
(std::vector<std::string> const& args, cmExecutionStatus &)
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2001-04-11 22:59:02 +04:00
|
|
|
if(args.size() < 2 || args.size() > 2)
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2001-04-11 22:59:02 +04:00
|
|
|
this->SetError("called with incorrect number of arguments");
|
2001-01-05 19:41:20 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2002-06-27 23:57:09 +04:00
|
|
|
std::string sourceListValue;
|
2001-01-05 19:41:20 +03:00
|
|
|
std::string templateDirectory = args[0];
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddExtraDirectory(templateDirectory.c_str());
|
2008-01-02 19:08:02 +03:00
|
|
|
std::string tdir;
|
2008-04-26 16:39:27 +04:00
|
|
|
if(!cmSystemTools::FileIsFullPath(templateDirectory.c_str()))
|
2008-01-02 19:08:02 +03:00
|
|
|
{
|
|
|
|
tdir = this->Makefile->GetCurrentDirectory();
|
|
|
|
tdir += "/";
|
|
|
|
tdir += templateDirectory;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tdir = templateDirectory;
|
|
|
|
}
|
2002-06-28 17:21:30 +04:00
|
|
|
|
|
|
|
// was the list already populated
|
2006-03-15 19:02:08 +03:00
|
|
|
const char *def = this->Makefile->GetDefinition(args[1].c_str());
|
2002-06-28 17:21:30 +04:00
|
|
|
if (def)
|
|
|
|
{
|
|
|
|
sourceListValue = def;
|
|
|
|
}
|
|
|
|
|
2001-01-05 19:41:20 +03:00
|
|
|
// Load all the files in the directory
|
2003-06-23 16:58:58 +04:00
|
|
|
cmsys::Directory dir;
|
2001-01-05 19:41:20 +03:00
|
|
|
if(dir.Load(tdir.c_str()))
|
|
|
|
{
|
2002-03-13 18:25:11 +03:00
|
|
|
size_t numfiles = dir.GetNumberOfFiles();
|
|
|
|
for(size_t i =0; i < numfiles; ++i)
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2003-06-27 16:46:00 +04:00
|
|
|
std::string file = dir.GetFile(static_cast<unsigned long>(i));
|
2001-07-17 02:40:42 +04:00
|
|
|
// Split the filename into base and extension
|
|
|
|
std::string::size_type dotpos = file.rfind(".");
|
|
|
|
if( dotpos != std::string::npos )
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2001-07-17 02:40:42 +04:00
|
|
|
std::string ext = file.substr(dotpos+1);
|
2007-06-18 19:59:23 +04:00
|
|
|
std::string base = file.substr(0, dotpos);
|
2001-07-17 02:40:42 +04:00
|
|
|
// Process only source files
|
2007-06-18 19:59:23 +04:00
|
|
|
if( base.size() != 0
|
2006-03-15 19:02:08 +03:00
|
|
|
&& std::find( this->Makefile->GetSourceExtensions().begin(),
|
|
|
|
this->Makefile->GetSourceExtensions().end(), ext )
|
|
|
|
!= this->Makefile->GetSourceExtensions().end() )
|
2001-07-17 02:40:42 +04:00
|
|
|
{
|
|
|
|
std::string fullname = templateDirectory;
|
|
|
|
fullname += "/";
|
|
|
|
fullname += file;
|
|
|
|
// add the file as a class file so
|
|
|
|
// depends can be done
|
2007-06-18 19:59:23 +04:00
|
|
|
cmSourceFile* sf =
|
|
|
|
this->Makefile->GetOrCreateSource(fullname.c_str());
|
|
|
|
sf->SetProperty("ABSTRACT","0");
|
|
|
|
if(!sourceListValue.empty())
|
2002-06-27 23:57:09 +04:00
|
|
|
{
|
|
|
|
sourceListValue += ";";
|
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
sourceListValue += fullname;
|
2001-07-17 02:40:42 +04:00
|
|
|
}
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddDefinition(args[1].c_str(), sourceListValue.c_str());
|
2001-01-05 19:41:20 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|