Changeset 389 for code/branches/FICN/src
- Timestamp:
- Dec 5, 2007, 2:30:09 PM (17 years ago)
- Location:
- code/branches/FICN/src
- Files:
-
- 23 added
- 3 edited
- 12 copied
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/CMakeLists.txt
r354 r389 6 6 ADD_SUBDIRECTORY(network) 7 7 ADD_SUBDIRECTORY(orxonox) 8 ADD_SUBDIRECTORY(class_hierarchy) 9 ADD_SUBDIRECTORY(audio) 8 10 9 # xml get handled by loader11 # xml gets handled by loader -
code/branches/FICN/src/audio/CMakeLists.txt
r387 r389 15 15 ADD_LIBRARY(audio ${SRC_FILES} ${INC_FILES}) 16 16 17 TARGET_LINK_LIBRARIES(audio ${OPENAL_LIBRARY} ${ALUT_LIBRARY} )17 TARGET_LINK_LIBRARIES(audio ${OPENAL_LIBRARY} ${ALUT_LIBRARY} ${OGGVORBIS_LIBRARY}) 18 18 19 19 -
code/branches/FICN/src/orxonox/CMakeLists.txt
r376 r389 24 24 ${OIS_LIBRARIES} 25 25 loader 26 audio 26 27 network 27 28 core … … 30 31 weapon 31 32 ) 33 -
code/branches/FICN/src/orxonox/orxonox.cc
r379 r389 51 51 #include "xml/xmlParser.h" 52 52 #include "loader/LevelLoader.h" 53 #include "audio/AudioManager.h" 53 54 54 55 #include "spaceship_steering.h" … … 280 281 void createScene(void) 281 282 { 283 audio::AudioManager* auMan = new audio::AudioManager(); 284 282 285 283 286 string levelFile = "sp_level_moonstation.oxw"; 284 287 loader::LevelLoader* loader = new loader::LevelLoader(levelFile); 285 288 } 289 286 290 287 291 void setupScene()
Note: See TracChangeset
for help on using the changeset viewer.