-i$(BCCDIR)\include problem

Do you have a question about makefiles, a compiler or IDE you are using and need to know how to set it up for wxWidgets or why it doesn't compile but other IDE's do ? Post your questions here.
kruto
In need of some credit
In need of some credit
Posts: 2
Joined: Thu Mar 24, 2005 2:03 am

-i$(BCCDIR)\include problem

Post by kruto »

Hi All!

I installed wxWidgets 2.5.3...
BCCDIR= .....Program files..... (space into path name =))
I can't compile all examples while I don't replace in makefile.bcc:
-i$(BCCDIR)\include
-L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk
to
-i"$(BCCDIR)\include"
-L"$(BCCDIR)\lib" -L"$(BCCDIR)\lib\psdk"

How I must install wxWidgets for resolve this bug? =)
User avatar
ABX
Can't get richer than this
Can't get richer than this
Posts: 810
Joined: Mon Sep 06, 2004 1:43 pm
Location: Poznan, Poland

Re: -i$(BCCDIR)\include problem

Post by ABX »

kruto wrote:BCCDIR= .....Program files..... (space into path name =))
I can't compile all examples(...)
How I must install wxWidgets for resolve this bug? =)
You have to use BCC in form of 8.3 short naming of the OS. For example I have BCb6 installed that way too and I use BCCDIR as:

Code: Select all

set BCCDIR=C:\PROGRA~1\BORLAND\CBUILDER6
ABX
CVS Head, 2.8.X
wxMSW, wxWinCE, wxPalmOS, wxOS2, wxMGL, bakefile
gcc 3.2.3, bcc 5.51, dmc 8.48, ow 1.6, vc 7.1, evc 3/4, pods 1.2
kruto
In need of some credit
In need of some credit
Posts: 2
Joined: Thu Mar 24, 2005 2:03 am

Post by kruto »

Thanks! =)