- Timestamp:
- Jan 29, 2009, 8:13:22 PM (16 years ago)
- Location:
- code/branches/buildsystem2/src/ceguilua
- Files:
-
- 2 added
- 2 deleted
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem2/src/ceguilua/ceguilua-0.6.1/ceguilua/CEGUILua.cpp
r2509 r2608 28 28 * OTHER DEALINGS IN THE SOFTWARE. 29 29 ***************************************************************************/ 30 #ifdef HAVE_CONFIG_H31 # include "config.h"32 #endif33 34 30 #include "CEGUI.h" 35 31 #include "CEGUIConfig.h" … … 46 42 } 47 43 48 #include "tolua ++.h"44 #include "tolua/tolua++.h" 49 45 50 46 // prototype for bindings initialisation function … … 75 71 {0, 0} 76 72 }; 77 #endif /* CEGUI_LUA_VER >= 51 */73 #endif /* LUA_VERSION_NUM >= 501 */ 78 74 79 75 // create a lua state … … 90 86 lua_call(d_state, 1, 0); 91 87 } 92 #else /* CEGUI_LUA_VER >= 51 */88 #else /* LUA_VERSION_NUM >= 501 */ 93 89 luaopen_base(d_state); 94 90 luaopen_io(d_state); … … 99 95 luaopen_debug(d_state); 100 96 #endif 101 #endif /* CEGUI_LUA_VER >= 51 */97 #endif /* LUA_VERSION_NUM >= 501 */ 102 98 103 99 setModuleIdentifierString(); -
code/branches/buildsystem2/src/ceguilua/ceguilua-0.6.1/ceguilua/CEGUILua.h
r1848 r2608 31 31 #define _CEGUILua_h_ 32 32 33 /*** CHANGES BY ORXONOX TEAM FOR MINGW32 ***/ 33 34 34 /************************************************************************* 35 35 Import / Export control macros … … 39 39 # define CEGUILUA_API __declspec(dllexport) 40 40 # else 41 # if defined( __MINGW32__ )42 # define CEGUILUA_API43 # else44 # define CEGUILUA_API __declspec(dllimport)45 # endif41 # if defined( __MINGW32__ ) 42 # define CEGUILUA_API 43 # else 44 # define CEGUILUA_API __declspec(dllimport) 45 # endif 46 46 # endif 47 47 #else -
code/branches/buildsystem2/src/ceguilua/ceguilua-0.6.1/ceguilua/CEGUILuaFunctor.cpp
r2509 r2608 40 40 } 41 41 42 #include "tolua ++.h"42 #include "tolua/tolua++.h" 43 43 44 44 // Start of CEGUI namespace section
Note: See TracChangeset
for help on using the changeset viewer.