summaryrefslogtreecommitdiff
path: root/Source/cmFLTKWrapUICommand.h
diff options
context:
space:
mode:
authorLuis Ibanez <luis.ibanez@kitware.com>2001-11-28 14:44:10 -0500
committerLuis Ibanez <luis.ibanez@kitware.com>2001-11-28 14:44:10 -0500
commitecd4b2b1eea2624dc39eb56d7cfcbcc4e9ffb295 (patch)
tree9c962510dd74edf2c3729c9bec26f81811af875c /Source/cmFLTKWrapUICommand.h
parent9301d470210e465a2eeedff02660c13f7927804c (diff)
downloadcmake-ecd4b2b1eea2624dc39eb56d7cfcbcc4e9ffb295.tar.gz
ENH: The command was simplified to generate a source list of cxx from a
source list of .fl GUI files.
Diffstat (limited to 'Source/cmFLTKWrapUICommand.h')
-rw-r--r--Source/cmFLTKWrapUICommand.h21
1 files changed, 10 insertions, 11 deletions
diff --git a/Source/cmFLTKWrapUICommand.h b/Source/cmFLTKWrapUICommand.h
index 8cc8142513..ebba4faf73 100644
--- a/Source/cmFLTKWrapUICommand.h
+++ b/Source/cmFLTKWrapUICommand.h
@@ -53,13 +53,12 @@ public:
virtual const char* GetFullDocumentation()
{
return
- "FLTK_WRAP_UI(resultingLibraryName HeadersDestName SourcesDestName "
- "SourceLists ...)\n"
+ "FLTK_WRAP_UI(resultingLibraryName SourceList)\n"
"Produce .h and .cxx files for all the .fl and .fld file listed "
- "in the SourceLists.\n"
- "The .h files will be added to the library using the HeadersDestName\n"
+ "in the SourceList.\n"
+ "The .h files will be added to the library using the base name in\n"
"source list.\n"
- "The .cxx files will be added to the library using the SourcesDestName\n"
+ "The .cxx files will be added to the library using the base name in \n"
"source list.";
}
@@ -67,15 +66,15 @@ private:
/**
* List of produced files.
*/
- std::vector<cmSourceFile> m_WrapSourcesClasses;
- std::vector<cmSourceFile> m_WrapHeadersClasses;
+ std::vector<cmSourceFile> m_GeneratedSourcesClasses;
+ std::vector<cmSourceFile> m_GeneratedHeadersClasses;
/**
- * List of header files that pprovide the source for m_WrapClasses.
+ * List of Fluid files that provide the source
+ * generating .cxx and .h files
*/
std::vector<std::string> m_WrapUserInterface;
- std::string m_LibraryName;
- std::string m_HeaderList;
- std::string m_SourceList;
+ std::string m_GUISourceList;
+ std::string m_GeneratedSourceList;
};