Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 13, 2008, 2:24:00 PM (16 years ago)
Author:
landauf
Message:

moved tolua from util to core because of circular dependencies
reverted some bugfixes in ParticleInterface

Location:
code/trunk/src/orxonox/core
Files:
3 edited
1 moved

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/core/CMakeLists.txt

    r1024 r1037  
     1AUX_SOURCE_DIRECTORY(tolua TOLUA_SRC_FILES)
     2
    13SET( CORE_SRC_FILES
     4  ${TOLUA_SRC_FILES}
    25  OrxonoxClass.cc
    36  BaseObject.cc
     
    710  InputHandler.cc
    811  InputManager.cc
     12  InputEventListener.cc
    913  MetaObjectList.cc
    1014  ConfigValueContainer.cc
     
    2731TARGET_LINK_LIBRARIES( core
    2832  util
     33
    2934  ${Lua_LIBRARIES}
     35  ${OIS_LIBRARIES}
    3036)
  • code/trunk/src/orxonox/core/Script.cc

    r1034 r1037  
    3131#include <map>
    3232
    33 #include "../core/CoreIncludes.h"
     33#include "CoreIncludes.h"
    3434
    3535extern "C" {
     
    3838}
    3939
    40 #include "util/tolua/tolua++.h"
    41 #include "util/tolua/tolua_bind.h"
     40#include "tolua/tolua++.h"
     41#include "tolua/tolua_bind.h"
    4242
    4343namespace orxonox
  • code/trunk/src/orxonox/core/tolua/tolua_bind.cc

    r1021 r1037  
    1414TOLUA_API int  tolua_orxonox_open (lua_State* tolua_S);
    1515
    16 #include "../../orxonox/core/Script.h"
     16#include "../Script.h"
    1717
    1818/* function to register type */
Note: See TracChangeset for help on using the changeset viewer.