diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-07-26 17:25:28 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-07-26 17:25:28 (GMT) |
commit | b15852d8b7d27590b16e3497e390cac7900997a3 (patch) | |
tree | 4ae86245962d6b430da6b51f4b0158ad4451cb10 /Source/cmFLTKWrapUICommand.cxx | |
parent | 97286f3470c9245f53b12c66187d0fb52661aa5c (diff) | |
download | CMake-b15852d8b7d27590b16e3497e390cac7900997a3.zip CMake-b15852d8b7d27590b16e3497e390cac7900997a3.tar.gz CMake-b15852d8b7d27590b16e3497e390cac7900997a3.tar.bz2 |
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.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFLTKWrapUICommand.cxx b/Source/cmFLTKWrapUICommand.cxx index 45d913f..73e1d72 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"; |