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
|
|
|
|
std::string cdir = m_Makefile->GetCurrentDirectory();
|
2005-02-22 18:32:44 +03:00
|
|
|
const char* fluid_exe =
|
|
|
|
m_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
|
|
|
|
m_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;
|
|
|
|
m_Makefile->ExpandSourceListArguments(args,newArgs, 1);
|
|
|
|
|
2001-11-28 22:45:20 +03:00
|
|
|
// get the list of GUI files from which .cxx and .h will be generated
|
2001-12-21 17:55:57 +03:00
|
|
|
std::string outputDirectory = m_Makefile->GetCurrentOutputDirectory();
|
|
|
|
|
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
|
2001-12-21 17:55:57 +03:00
|
|
|
m_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
|
|
|
{
|
2002-06-27 23:57:09 +04:00
|
|
|
cmSourceFile *curr = m_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);
|
|
|
|
|
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;
|
2003-07-14 18:13:30 +04:00
|
|
|
m_Makefile->AddCustomCommandToOutput(cxxres.c_str(),
|
2005-02-22 18:32:44 +03:00
|
|
|
depends, no_main_dependency,
|
|
|
|
commandLines, no_comment);
|
2003-07-14 17:31:29 +04:00
|
|
|
m_Makefile->AddCustomCommandToOutput(hname.c_str(),
|
2005-02-22 18:32:44 +03:00
|
|
|
depends, no_main_dependency,
|
|
|
|
commandLines, no_comment);
|
|
|
|
|
2003-07-14 18:13:30 +04:00
|
|
|
cmSourceFile *sf = m_Makefile->GetSource(cxxres.c_str());
|
|
|
|
sf->GetDepends().push_back(hname);
|
|
|
|
sf->GetDepends().push_back(origname);
|
2003-07-14 17:31:29 +04:00
|
|
|
m_GeneratedSourcesClasses.push_back(sf);
|
2001-11-27 06:40:31 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmFLTKWrapUICommand::FinalPass()
|
|
|
|
{
|
|
|
|
// first we add the rules for all the .fl to .h and .cxx files
|
2003-07-14 17:31:29 +04:00
|
|
|
size_t lastHeadersClass = m_GeneratedSourcesClasses.size();
|
2001-12-03 02:22:19 +03:00
|
|
|
|
2001-11-29 09:46:29 +03:00
|
|
|
// Generate code for all the .fl files
|
2002-03-13 18:25:11 +03:00
|
|
|
for(size_t classNum = 0; classNum < lastHeadersClass; classNum++)
|
2001-11-27 06:40:31 +03:00
|
|
|
{
|
2003-07-14 17:31:29 +04:00
|
|
|
m_Makefile->GetTargets()[m_Target].GetSourceFiles().push_back(
|
|
|
|
m_GeneratedSourcesClasses[classNum]);
|
2001-11-29 09:46:29 +03:00
|
|
|
}
|
2001-11-27 06:40:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|