ENH: Support for FLTK Fluid tool added.

This commit is contained in:
Luis Ibanez 2001-11-27 00:02:27 -05:00
parent 29fe0c8cf3
commit 42e2874d75
1 changed files with 5 additions and 2 deletions

View File

@ -1382,14 +1382,17 @@ void cmUnixMakefileGenerator::OutputMakeRules(std::ostream& fout)
"all", "all",
"cmake.depends $(TARGETS) $(SUBDIR_BUILD)", "cmake.depends $(TARGETS) $(SUBDIR_BUILD)",
0); 0);
if (m_Makefile->IsOn("QT_WRAP_CPP") || m_Makefile->IsOn("QT_WRAP_UI")) if (m_Makefile->IsOn("QT_WRAP_CPP") ||
m_Makefile->IsOn("QT_WRAP_UI") ||
m_Makefile->IsOn("FLTK_WRAP_UI") )
{ {
this->OutputMakeRule(fout, this->OutputMakeRule(fout,
"remove generated files and dependency file", "remove generated files and dependency file",
"clean", "clean",
"$(SUBDIR_CLEAN)", "$(SUBDIR_CLEAN)",
"rm -f $(CLEAN_OBJECT_FILES) $(EXECUTABLES)" "rm -f $(CLEAN_OBJECT_FILES) $(EXECUTABLES)"
" $(TARGETS) ${GENERATED_QT_FILES}", " $(TARGETS) ${GENERATED_QT_FILES}"
" ${GENERATED_FLTK_FILES}",
"make depend"); "make depend");
} }
else else