Changeset 327 for code/branches/audio/src/orxonox
- Timestamp:
- Nov 28, 2007, 4:28:44 PM (17 years ago)
- Location:
- code/branches/audio/src/orxonox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/audio/src/orxonox/CMakeLists.txt
r304 r327 6 6 ADD_EXECUTABLE(../../bin/main ${SRC_FILES} ${INC_FILES}) 7 7 8 TARGET_LINK_LIBRARIES(../../bin/main ${OGRE_LIBRARIES} ${OIS_LIBRARIES} loader )8 TARGET_LINK_LIBRARIES(../../bin/main ${OGRE_LIBRARIES} ${OIS_LIBRARIES} loader audio) 9 9 10 10 INCLUDE_DIRECTORIES(..) -
code/branches/audio/src/orxonox/orxonox.cc
r304 r327 41 41 #include "xml/xmlParser.h" 42 42 #include "loader/LevelLoader.h" 43 #include "audio/Ambient.h" 43 44 44 45 … … 190 191 void createScene(void) 191 192 { 192 193 audio::Ambient* bgsound = new audio::Ambient(); 194 193 195 string levelFile = "sp_level_moonstation.oxw"; 194 196 loader::LevelLoader* loader = new loader::LevelLoader(levelFile); 197 198 199 195 200 } 196 201
Note: See TracChangeset
for help on using the changeset viewer.