From: Francesco M. <fr...@us...> - 2006-05-20 19:40:25
|
Update of /cvsroot/wxlua/wxLua/bindings/wxstc In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv24463/bindings/wxstc Modified Files: wxstc_rules.lua Log Message: modified wrapper generator to include export symbols Index: wxstc_rules.lua =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxstc/wxstc_rules.lua,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** wxstc_rules.lua 24 Apr 2006 02:33:26 -0000 1.13 --- wxstc_rules.lua 20 May 2006 19:40:19 -0000 1.14 *************** *** 22,25 **** --- 22,28 ---- output_cpp_filepath = wxlua_dir.."modules/wxbindstc/src" + output_cpp_impexpsymbol = "WXDLLIMPEXP_WXBINDSTC" + output_cpp_impexpdatasymbol = "WXDLLIMPEXP_DATA_WXBINDSTC" + ------------------------------------------------------------------------------- -- Set the name of the header file that will have the #includes from the *************** *** 58,62 **** hook_cpp_binding_header_includes = "#include \"wx/defs.h\"\n".. ! "#include \"wxbind/include/wxbind.h\"\n".. "#ifndef wxUSE_WAVE\n#define wxUSE_WAVE 0\n#endif\n".. "#ifndef wxUSE_SOUND\n#define wxUSE_SOUND 0\n#endif\n" --- 61,66 ---- hook_cpp_binding_header_includes = "#include \"wx/defs.h\"\n".. ! "#include \"wxbindstc/include/wxbind.h\"\n".. ! "#include \"wxbindstc/include/wxbindstcdefs.h\"\n".. "#ifndef wxUSE_WAVE\n#define wxUSE_WAVE 0\n#endif\n".. "#ifndef wxUSE_SOUND\n#define wxUSE_SOUND 0\n#endif\n" |