Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 824


Ignore:
Timestamp:
Feb 17, 2008, 5:58:28 PM (16 years ago)
Author:
nicolasc
Message:

fORGE.cmake fix

Location:
code/branches/hud
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/branches/hud/cmake/FindOGRE.cmake

    r823 r824  
    1818IF (WIN32) #Windows
    1919    MESSAGE(STATUS "Looking for OGRE")
    20     SET(OGRE_INCLUDE_DIR /usr/include/OGRE ../libs/ogre/OgreMain/include)
    21     SET(OGRE_LIB_DIR ${CMAKE_CURRENT_SOURCE_DIR}/usr/include/OGRE ${CMAKE_CURRENT_SOURCE_DIR}/../libs/ogre/Samples/Common/bin/Release)
     20    SET(OGRE_INCLUDE_DIR ../libs/ogre/OgreMain/include)
     21    SET(OGRE_LIB_DIR${CMAKE_CURRENT_SOURCE_DIR}/../libs/ogre/Samples/Common/bin/Release)
    2222    SET(OGRE_LIBRARIES debug OgreMain_d optimized OgreMain)
    2323ELSE (WIN32) #Unix
  • code/branches/hud/src/orxonox/OrxonoxPrereqs.h

    r790 r824  
    9292  class ParticleInterface;
    9393  class HUD;
     94  class Bar;
    9495}
    9596
  • code/branches/hud/src/orxonox/hud/Bar.cc

    r823 r824  
    3737{
    3838  using namespace Ogre;
    39    
     39
    4040  Bar::Bar(void){}
    41  
     41
    4242  Bar::~Bar(void){}
    43  
    44  
     43
     44
    4545/*  void Bar::setPercentage(Ogre::Real percentage){
    4646    percentage_=percentage;
     
    5757
    5858
    59  
     59
    6060  void Bar::setColor(ColourValue color){
    6161    color_=color;
    6262    setColour(color);
    6363  }
    64          
    65        
    6664
    6765
    68 
     66}
Note: See TracChangeset for help on using the changeset viewer.