summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorLuis Ibanez <luis.ibanez@kitware.com>2001-11-27 05:03:45 (GMT)
committerLuis Ibanez <luis.ibanez@kitware.com>2001-11-27 05:03:45 (GMT)
commit1bb3fada7ae16be9c3b25637d121ce72127e7239 (patch)
tree5891765f7059bb9695c9fdad418e4d8956b5697a /Source/cmCommands.cxx
parent42e2874d75639534e94e4f3270dc0692f2869dd6 (diff)
downloadCMake-1bb3fada7ae16be9c3b25637d121ce72127e7239.zip
CMake-1bb3fada7ae16be9c3b25637d121ce72127e7239.tar.gz
CMake-1bb3fada7ae16be9c3b25637d121ce72127e7239.tar.bz2
ENH: Command for running FLTK's UI tool "Fluid" was added.
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r--Source/cmCommands.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx
index 2d8c890..8752159 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -27,6 +27,7 @@
#include "cmFindPathCommand.cxx"
#include "cmFindProgramCommand.cxx"
#include "cmForEachCommand.cxx"
+#include "cmFLTKWrapUICommand.cxx"
#include "cmGetFilenameComponentCommand.cxx"
#include "cmIfCommand.cxx"
#include "cmIncludeCommand.cxx"
@@ -90,6 +91,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmFindPathCommand);
commands.push_back(new cmFindProgramCommand);
commands.push_back(new cmForEachCommand);
+ commands.push_back(new cmFLTKWrapUICommand);
commands.push_back(new cmGetFilenameComponentCommand);
commands.push_back(new cmIfCommand);
commands.push_back(new cmIncludeCommand);