From: Leslie N. <les...@fm...> - 2008-01-17 13:41:29
|
Trying to compile with static runtime libs. BUILD = release UNICODE = 1 SHARED = 0 WX_SHARED = 0 WX_MONOLITHIC = 0 RUNTIME_LIBS = static To get it to compile I need to do the following Add this line to wxLua/build/makefile.vc THREADING = multi in wxLua\modules\build\msw\makefile.vc LUA_LIB_CFLAGS = /MD$(VAR_199) /DWIN32 $(VAR) $(VAR_196) $(VAR_198) \ changed to: LUA_LIB_CFLAGS = /M$(__RUNTIME_LIBS_27)$(VAR_199) /DWIN32 $(VAR) $(VAR_196) $(VAR_198) \ As before I need to disable wxLuaFreeze. Apart from that it compiled but I haven't tested it all yet... Thanks, Les |