From: Francesco M. <f18...@ya...> - 2006-03-05 10:10:23
|
John Labenski ha scritto: > I'm just using the wxCode bakefiles and I don't think there's a way to > separate the output of the build files? Francesco, is that right? I've > used the bakefiles for your projects as a starting point, but maybe > I've missed something. it's possible but not that elegant: <set var="POSTFIX"> <if cond="WX_SHARED=='0'">_lib</if> <if cond="WX_SHARED=='1'">_dll</if> </set> <if cond="FORMAT!='autoconf'"> <set var="BUILDDIR">$(FORMAT)$(WXLIBPOSTFIX)$(POSTFIX)</set> </if> I plan to revolutionate all wxCode bakefiles as soon as my patches are integrated in bakefile. Then, to setup a 'standard' component (i.e. a component using standard folders like src/ and include/) only few lines will be necessary in component's bakefiles to setup a powerful build system like the one we currently have in wxLua ;) Francesco |