Last change
on this file since 34 was
34,
checked in by nicolasc, 17 years ago
|
updated build-script
|
-
Property svn:executable set to
*
|
File size:
1.0 KB
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | |
---|
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/ |
---|
5 | #fi |
---|
6 | |
---|
7 | COMPILER="gcc-3.4.3" |
---|
8 | SRC_FILES="src/main.cpp" |
---|
9 | HEADER_FILES="src/ExampleApplication.h src/ExampleFrameListener.h src/ExampleLoadingBar.h" |
---|
10 | EXECUTABLE="main" |
---|
11 | LIBS="OGRE OIS" |
---|
12 | LD_FLAGS="`pkg-config --libs ${LIBS}`" |
---|
13 | CXX_FLAGS="`pkg-config --cflags ${LIBS}`" |
---|
14 | INCLUDES="-Isrc" |
---|
15 | FLAGS="-O2 -march=pentium4 -pipe -g -ggdb" |
---|
16 | |
---|
17 | echo "${COMPILER} ${FLAGS} ${CXX_FLAGS} ${LD_FLAGS} ${INCLUDES} ${SRC_FILES} -o ${EXECUTABLE}" |
---|
18 | ${COMPILER} ${FLAGS} ${CXX_FLAGS} ${LD_FLAGS} ${INCLUDES} ${SRC_FILES} -o ${EXECUTABLE} |
---|
19 | #g++-4.2.0 `pkg-config --libs /usr/pack/ogre-1.4.5-sd/i686-debian-linux3.1/lib/pkgconfig/OGRE.pc /usr/pack/ois-1.0-sd/i686-debian-linux3.1/lib/pkgconfig/OIS.pc` `pkg-config --cflags /usr/pack/ogre-1.4.5-sd/i686-debian-linux3.1/lib/pkgconfig/OGRE.pc /usr/pack/ois-1.0-sd/i686-debian-linux3.1/lib/pkgconfig/OIS.pc` main.cpp -I. -O2 -march=prescott -pipe -o main -g -ggdb |
---|
Note: See
TracBrowser
for help on using the repository browser.