Building FiveMac apps from HBIDE !!!
Posted: Wed Jul 14, 2010 8:22 am
There is a HBIDE bug to be fixed on OSX, but besides that, we can already build FiveMac apps from HBIDE !!!
I used these settings for HBIDE (you can run it as a script or better do an auto load script in HBIDE):
settings.prg
I used these settings for HBIDE (you can run it as a script or better do an auto load script in HBIDE):
settings.prg
Code: Select all
FUNCTION main( oIde )
hb_setEnv( "PATH", hb_getEnv( "PATH" ) +
":/Users/anto/harbour/harbour/bin/darwin/gcc" )
hb_setEnv( "HB_COMPILER", "gcc" )
hb_setEnv( "HB_USER_PRGFLAGS", "-i/Users/anto/fivemac/include" )
hb_setEnv( "HB_USER_LDFLAGS", "-L/Users/anto/fivemac/lib -framework Cocoa" )
hb_setEnv( "HB_USER_LIBS", "five.lib fivec.lib" )
hb_setEnv( "HB_GUI", "1" )
MsgBox( "FiveMac settings loaded" )
RETURN NIL