Changeset 25 for code/branches
- Timestamp:
- Oct 10, 2007, 3:59:34 PM (17 years ago)
- Location:
- code/branches/tutorial/Tutorial
- Files:
-
- 467 added
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
code/branches/tutorial/Tutorial/ExampleFrameListener.h
r18 r25 50 50 { 51 51 protected: 52 /* 52 53 53 void updateStats(void) 54 54 { … … 86 86 catch(...) { } 87 87 } 88 */ 88 89 89 public: 90 90 // Constructor takes a RenderWindow because it uses that to determine input context … … 366 366 bool frameEnded(const FrameEvent& evt) 367 367 { 368 //updateStats();368 updateStats(); 369 369 return true; 370 370 } -
code/branches/tutorial/Tutorial/build-script-gentoo
r24 r25 2 2 3 3 #if [ $1 == --with-tardis ] 4 export PKG_CONFIG_PATH=/usr/pack/ogre-1.4.5-sd/i686-debian-linux3.1/lib/pkgconfig:/usr/pack/ois-1.0-sd/i686-debian-linux3.1/lib/pkgconfig/4 # export PKG_CONFIG_PATH=/usr/pack/ogre-1.4.5-sd/i686-debian-linux3.1/lib/pkgconfig:/usr/pack/ois-1.0-sd/i686-debian-linux3.1/lib/pkgconfig/ 5 5 #fi 6 6 7 COMPILER="gcc -4.2.0"7 COMPILER="gcc" 8 8 MAIN_SRC="main.cpp" 9 9 EXECUTABLE="main" … … 12 12 CXX_FLAGS="`pkg-config --cflags ${LIBS}`" 13 13 INCLUDES="-I." 14 FLAGS="-O2 -march= prescott-pipe -g -ggdb"14 FLAGS="-O2 -march=nocona -pipe -g -ggdb" 15 15 16 16 echo "${COMPILER} ${FLAGS} ${CXX_FLAGS} ${LD_FLAGS} ${INCLUDES} ${MAIN_SRC} -o ${EXECUTABLE}"
Note: See TracChangeset
for help on using the changeset viewer.