2001-11-27 06:40:31 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-11-27 06:40:31 +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-11-27 06:40:31 +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-11-27 06:40:31 +03:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmFLTKWrapUICommand.h"
|
|
|
|
|
2004-02-22 21:14:59 +03:00
|
|
|
#include "cmSourceFile.h"
|
|
|
|
|
2001-11-27 06:40:31 +03:00
|
|
|
// cmFLTKWrapUICommand
|
|
|
|
bool cmFLTKWrapUICommand::InitialPass(std::vector<std::string> const& args)
|
|
|
|
{
|
2002-12-17 22:55:49 +03:00
|
|
|
if(args.size() < 2 )
|
2001-11-27 06:40:31 +03:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// what is the current source dir
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string cdir = this->Makefile->GetCurrentDirectory();
|
2005-02-22 18:32:44 +03:00
|
|
|
const char* fluid_exe =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->GetRequiredDefinition("FLTK_FLUID_EXECUTABLE");
|
2001-11-27 06:40:31 +03:00
|
|
|
|
2001-12-11 10:21:18 +03:00
|
|
|
// get parameter for the command
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Target = args[0]; // Target that will use the generated files
|
2001-11-27 06:40:31 +03:00
|
|
|
|
2002-06-27 23:57:09 +04:00
|
|
|
std::vector<std::string> newArgs;
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->ExpandSourceListArguments(args,newArgs, 1);
|
2002-06-27 23:57:09 +04:00
|
|
|
|
2001-11-28 22:45:20 +03:00
|
|
|
// get the list of GUI files from which .cxx and .h will be generated
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string outputDirectory = this->Makefile->GetCurrentOutputDirectory();
|
2001-12-21 17:55:57 +03:00
|
|
|
|
2001-12-03 02:22:19 +03:00
|
|
|
// Some of the generated files are *.h so the directory "GUI"
|
|
|
|
// where they are created have to be added to the include path
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddIncludeDirectory( outputDirectory.c_str() );
|
2001-12-03 02:22:19 +03:00
|
|
|
|
2002-06-27 23:57:09 +04:00
|
|
|
for(std::vector<std::string>::iterator i = (newArgs.begin() + 1);
|
|
|
|
i != newArgs.end(); i++)
|
2001-11-28 22:45:20 +03:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
cmSourceFile *curr = this->Makefile->GetSource(i->c_str());
|
2001-11-28 22:45:20 +03:00
|
|
|
// if we should use the source GUI
|
|
|
|
// to generate .cxx and .h files
|
2003-07-14 18:13:30 +04:00
|
|
|
if (!curr || !curr->GetPropertyAsBool("WRAP_EXCLUDE"))
|
2001-11-27 06:40:31 +03:00
|
|
|
{
|
2001-11-28 22:45:20 +03:00
|
|
|
cmSourceFile header_file;
|
2002-06-27 23:57:09 +04:00
|
|
|
std::string srcName = cmSystemTools::GetFilenameWithoutExtension(*i);
|
2001-12-03 02:22:19 +03:00
|
|
|
const bool headerFileOnly = true;
|
2002-06-27 23:57:09 +04:00
|
|
|
header_file.SetName(srcName.c_str(),
|
2001-12-21 17:55:57 +03:00
|
|
|
outputDirectory.c_str(), "h",headerFileOnly);
|
2002-06-27 23:57:09 +04:00
|
|
|
std::string origname = cdir + "/" + *i;
|
2001-11-29 09:46:29 +03:00
|
|
|
std::string hname = header_file.GetFullPath();
|
2001-11-28 22:45:20 +03:00
|
|
|
// add starting depends
|
2003-07-14 17:31:29 +04:00
|
|
|
std::vector<std::string> depends;
|
|
|
|
depends.push_back(origname);
|
2006-04-24 19:30:57 +04:00
|
|
|
depends.push_back(fluid_exe);
|
2003-07-14 18:13:30 +04:00
|
|
|
std::string cxxres = outputDirectory.c_str();
|
|
|
|
cxxres += "/" + srcName;
|
|
|
|
cxxres += ".cxx";
|
2005-02-22 18:32:44 +03:00
|
|
|
|
|
|
|
cmCustomCommandLine commandLine;
|
|
|
|
commandLine.push_back(fluid_exe);
|
|
|
|
commandLine.push_back("-c"); // instructs Fluid to run in command line
|
|
|
|
commandLine.push_back("-h"); // optionally rename .h files
|
|
|
|
commandLine.push_back(hname);
|
|
|
|
commandLine.push_back("-o"); // optionally rename .cxx files
|
|
|
|
commandLine.push_back(cxxres);
|
|
|
|
commandLine.push_back(origname);// name of the GUI fluid file
|
|
|
|
cmCustomCommandLines commandLines;
|
|
|
|
commandLines.push_back(commandLine);
|
|
|
|
|
2003-07-14 17:31:29 +04:00
|
|
|
// Add command for generating the .h and .cxx files
|
2005-02-22 18:32:44 +03:00
|
|
|
const char* no_main_dependency = 0;
|
|
|
|
const char* no_comment = 0;
|
2006-02-08 18:58:36 +03:00
|
|
|
const char* no_working_dir = 0;
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddCustomCommandToOutput(cxxres.c_str(),
|
2005-02-22 18:32:44 +03:00
|
|
|
depends, no_main_dependency,
|
2006-02-08 18:58:36 +03:00
|
|
|
commandLines, no_comment,
|
|
|
|
no_working_dir);
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddCustomCommandToOutput(hname.c_str(),
|
2005-02-22 18:32:44 +03:00
|
|
|
depends, no_main_dependency,
|
2006-02-08 18:58:36 +03:00
|
|
|
commandLines, no_comment,
|
|
|
|
no_working_dir);
|
2005-02-22 18:32:44 +03:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
cmSourceFile *sf = this->Makefile->GetSource(cxxres.c_str());
|
2003-07-14 18:13:30 +04:00
|
|
|
sf->GetDepends().push_back(hname);
|
|
|
|
sf->GetDepends().push_back(origname);
|
2006-03-15 19:02:08 +03:00
|
|
|
this->GeneratedSourcesClasses.push_back(sf);
|
2001-11-27 06:40:31 +03:00
|
|
|
}
|
|
|
|
}
|
2005-06-10 18:09:17 +04:00
|
|
|
|
|
|
|
// create the variable with the list of sources in it
|
2006-03-15 19:02:08 +03:00
|
|
|
size_t lastHeadersClass = this->GeneratedSourcesClasses.size();
|
2005-06-10 18:09:17 +04:00
|
|
|
std::string sourceListValue;
|
|
|
|
for(size_t classNum = 0; classNum < lastHeadersClass; classNum++)
|
|
|
|
{
|
|
|
|
if (classNum)
|
|
|
|
{
|
|
|
|
sourceListValue += ";";
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
sourceListValue += this->GeneratedSourcesClasses[classNum]->GetFullPath();
|
2005-06-10 18:09:17 +04:00
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string varName = this->Target;
|
2005-06-10 18:09:17 +04:00
|
|
|
varName += "_FLTK_UI_SRCS";
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddDefinition(varName.c_str(), sourceListValue.c_str());
|
2001-11-27 06:40:31 +03:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmFLTKWrapUICommand::FinalPass()
|
|
|
|
{
|
2005-06-10 18:09:17 +04:00
|
|
|
// people should add the srcs to the target themselves, but the old command
|
|
|
|
// didn't support that, so check and see if they added the files in and if
|
|
|
|
// they didn;t then print a warning and add then anyhow
|
|
|
|
std::vector<std::string> srcs =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->GetTargets()[this->Target].GetSourceLists();
|
2005-06-10 18:09:17 +04:00
|
|
|
bool found = false;
|
|
|
|
for (unsigned int i = 0; i < srcs.size(); ++i)
|
|
|
|
{
|
|
|
|
if (srcs[i] ==
|
2006-03-15 19:02:08 +03:00
|
|
|
this->GeneratedSourcesClasses[0]->GetFullPath())
|
2005-06-10 18:09:17 +04:00
|
|
|
{
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found)
|
2001-11-27 06:40:31 +03:00
|
|
|
{
|
2006-05-10 23:46:45 +04:00
|
|
|
std::string msg =
|
|
|
|
"In CMake 2.2 the FLTK_WRAP_UI command sets a variable to the list of "
|
|
|
|
"source files that should be added to your executable or library. It "
|
2006-05-11 18:45:33 +04:00
|
|
|
"appears that you have not added these source files to your target. "
|
|
|
|
"You should change your CMakeLists.txt file to "
|
|
|
|
"directly add the generated files to the target. "
|
|
|
|
"For example FTLK_WRAP_UI(foo src1 src2 src3) "
|
2006-05-10 23:46:45 +04:00
|
|
|
"will create a variable named foo_FLTK_UI_SRCS that contains the list "
|
|
|
|
"of sources to add to your target when you call ADD_LIBRARY or "
|
|
|
|
"ADD_EXECUTABLE. For now CMake will add the sources to your target "
|
|
|
|
"for you as was done in CMake 2.0 and earlier. In the future this may "
|
|
|
|
"become an error.";
|
|
|
|
msg +="The problem was found while processing the source directory: ";
|
2006-03-15 19:02:08 +03:00
|
|
|
msg += this->Makefile->GetStartDirectory();
|
2005-07-29 22:17:24 +04:00
|
|
|
cmSystemTools::Message(msg.c_str(),"Warning");
|
2005-06-10 18:09:17 +04:00
|
|
|
// first we add the rules for all the .fl to .h and .cxx files
|
2006-03-15 19:02:08 +03:00
|
|
|
size_t lastHeadersClass = this->GeneratedSourcesClasses.size();
|
2005-06-10 18:09:17 +04:00
|
|
|
|
|
|
|
// Generate code for all the .fl files
|
|
|
|
for(size_t classNum = 0; classNum < lastHeadersClass; classNum++)
|
|
|
|
{
|
2006-05-10 23:46:45 +04:00
|
|
|
this->Makefile->GetTargets()[this->Target].GetSourceFiles().
|
|
|
|
push_back(this->GeneratedSourcesClasses[classNum]);
|
2005-06-10 18:09:17 +04:00
|
|
|
}
|
2001-11-29 09:46:29 +03:00
|
|
|
}
|
2001-11-27 06:40:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|