Home
last modified time | relevance | path

Searched refs:mcDistClean (Results 1 – 8 of 8) sorted by relevance

/dports/devel/codeblocks/codeblocks-20.03/src/plugins/scriptedwizard/resources/qt4/
H A Dwizard.script105 project.SetMakeCommandFor(mcDistClean, _T("$make -f $makefile distclean"));
141 debug_target.SetMakeCommandFor(mcDistClean, _T("$make -f $makefile distclean debug"));
160 release_target.SetMakeCommandFor(mcDistClean, _T("$make -f $makefile distclean release"));
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/scriptedwizard/resources/qt4dll/
H A Dwizard.script105 project.SetMakeCommandFor(mcDistClean, _T("$make -f $makefile distclean"));
141 debug_target.SetMakeCommandFor(mcDistClean, _T("$make -f $makefile distclean debug"));
160 release_target.SetMakeCommandFor(mcDistClean, _T("$make -f $makefile distclean release"));
/dports/devel/codeblocks/codeblocks-20.03/src/include/
H A Dcompiletargetbase.h46 mcDistClean, enumerator
/dports/devel/codeblocks/codeblocks-20.03/src/sdk/scripting/bindings/
H A Dsc_consts.cpp120 BIND_INT_CONSTANT(mcDistClean); in Register_Constants()
/dports/devel/codeblocks/codeblocks-20.03/src/sdk/
H A Dcompiletargetbase.cpp39 m_MakeCommands[mcDistClean] = _T("$make -f $makefile distclean$target"); in CompileTargetBase()
H A Dprojectloader.cpp348 target->SetMakeCommandFor(mcDistClean, cbC2U(node->Attribute("command"))); in DoMakeCommands()
1329 … AddElement(makenode, "DistClean", "command", m_pProject->GetMakeCommandFor(mcDistClean)); in ExportTargetAsProject()
1496 … AddElement(makenode, "DistClean", "command", target->GetMakeCommandFor(mcDistClean)); in ExportTargetAsProject()
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/compilergcc/
H A Dcompileroptionsdlg.cpp870 …, "txtMakeCmd_DistClean", wxTextCtrl)->SetValue(m_pProject->GetMakeCommandFor(mcDistClean)); in DoLoadOptions()
897 …s, "txtMakeCmd_DistClean", wxTextCtrl)->SetValue(m_pTarget->GetMakeCommandFor(mcDistClean)); in DoLoadOptions()
1067 …m_pProject->SetMakeCommandFor(mcDistClean, XRCCTRL(*this, "txtMakeCmd_DistClean", wxTextCtrl)->Get… in DoSaveOptions()
1105 …m_pTarget->SetMakeCommandFor(mcDistClean, XRCCTRL(*this, "txtMakeCmd_DistClean", wxTextCtrl)->GetV… in DoSaveOptions()
H A Dcompilergcc.cpp2208 wxString cmd = GetMakeCommandFor(mcDistClean, m_pProject, target); in DistClean()