Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Plugins development => Topic started by: yop on January 16, 2006, 09:02:51 pm

Title: Build custom mekefile unavailable?
Post by: yop on January 16, 2006, 09:02:51 pm
Code::Blocks rev 1754.
I tried to build a project using a custom makefile with no luck, while rebuilding worked nicely. Looking at the compilergcc.cpp, I see in the CompilerGCC::ReBuild method (my comments) :
Code: cpp
if(UseMake())
{
//make custom makefile
}
else
{
//use direct commands
}
The above is missing from the CompilerGCC::Build method, which makes selecting Menu->Build->Build to only compile using the queued commands even if the user has selected to use a custom Makefile.
Is this intentional?
Title: Re: Build custom mekefile unavailable?
Post by: mandrav on January 27, 2006, 10:58:14 am
Revision 1884 has it back but I haven't tested it thoroughly.