summaryrefslogtreecommitdiff
path: root/Source/cmFLTKWrapUICommand.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2005-07-26 13:25:28 -0400
committerBill Hoffman <bill.hoffman@kitware.com>2005-07-26 13:25:28 -0400
commitb15852d8b7d27590b16e3497e390cac7900997a3 (patch)
tree4ae86245962d6b430da6b51f4b0158ad4451cb10 /Source/cmFLTKWrapUICommand.cxx
parent97286f3470c9245f53b12c66187d0fb52661aa5c (diff)
downloadcmake-b15852d8b7d27590b16e3497e390cac7900997a3.tar.gz
ENH: make sure custom command depend on fluid so if fltk is part of project fluid gets built first
Diffstat (limited to 'Source/cmFLTKWrapUICommand.cxx')
-rw-r--r--Source/cmFLTKWrapUICommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFLTKWrapUICommand.cxx b/Source/cmFLTKWrapUICommand.cxx
index 45d913f904..73e1d724cb 100644
--- a/Source/cmFLTKWrapUICommand.cxx
+++ b/Source/cmFLTKWrapUICommand.cxx
@@ -63,7 +63,7 @@ bool cmFLTKWrapUICommand::InitialPass(std::vector<std::string> const& args)
// add starting depends
std::vector<std::string> depends;
depends.push_back(origname);
-
+ depends.push_back("fluid");
std::string cxxres = outputDirectory.c_str();
cxxres += "/" + srcName;
cxxres += ".cxx";