Thread overview
wxD compiling problems
Jan 27, 2013
SaltySugar
Jan 27, 2013
SomeDude
January 27, 2013
I need some help. I compiled wxwidgets succesfully. But when I try to compile wxD, it shows me an error.

C:\Program Files\WxWidgets\wxd> make

It shows:
Can't read makefile '/build/msw/config.dmc'

what can i do?
January 27, 2013
On Sunday, 27 January 2013 at 08:03:47 UTC, SaltySugar wrote:
> I need some help. I compiled wxwidgets succesfully. But when I try to compile wxD, it shows me an error.
>
> C:\Program Files\WxWidgets\wxd> make
>
> It shows:
> Can't read makefile '/build/msw/config.dmc'
>
> what can i do?

I think you'll have more success if you post in the http://forum.dlang.org/group/digitalmars.D.learn
group. The current group is geared towards discussions on the language and its development.
January 29, 2013
SaltySugar wrote:
> I need some help. I compiled wxwidgets succesfully. But when I try to
> compile wxD, it shows me an error.
>
> C:\Program Files\WxWidgets\wxd> make
>
> It shows:
> Can't read makefile '/build/msw/config.dmc'
>
> what can i do?

Seems like you haven't set up your $(WXDIR) environment variable ?
Some Windows installations seem to use $(WXWIN) instead, it seems...

http://wiki.wxwidgets.org/Adding_an_Environment_Variable_under_Windows

That would cause the error above, when including the wxWidgets config:
include $(WXDIR)/build/msw/config.dmc


Didn't really try it myself, as I was using MinGW and MSYS (if needed).

--anders