From b15852d8b7d27590b16e3497e390cac7900997a3 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Tue, 26 Jul 2005 13:25:28 -0400 Subject: [PATCH] ENH: make sure custom command depend on fluid so if fltk is part of project fluid gets built first --- Source/cmFLTKWrapUICommand.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmFLTKWrapUICommand.cxx b/Source/cmFLTKWrapUICommand.cxx index 45d913f90..73e1d724c 100644 --- a/Source/cmFLTKWrapUICommand.cxx +++ b/Source/cmFLTKWrapUICommand.cxx @@ -63,7 +63,7 @@ bool cmFLTKWrapUICommand::InitialPass(std::vector const& args) // add starting depends std::vector depends; depends.push_back(origname); - + depends.push_back("fluid"); std::string cxxres = outputDirectory.c_str(); cxxres += "/" + srcName; cxxres += ".cxx";