diff options
author | Luis Ibanez <luis.ibanez@kitware.com> | 2001-11-27 05:03:45 (GMT) |
---|---|---|
committer | Luis Ibanez <luis.ibanez@kitware.com> | 2001-11-27 05:03:45 (GMT) |
commit | 1bb3fada7ae16be9c3b25637d121ce72127e7239 (patch) | |
tree | 5891765f7059bb9695c9fdad418e4d8956b5697a /Source/cmCommands.cxx | |
parent | 42e2874d75639534e94e4f3270dc0692f2869dd6 (diff) | |
download | CMake-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.cxx | 2 |
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); |