beta 2 tweaks for the linux version
parent
8daee27ed8
commit
f212edb4ea
|
@ -38,22 +38,58 @@ SET ( ASTEROIDS_SOURCES
|
||||||
asteroids/View.cc
|
asteroids/View.cc
|
||||||
)
|
)
|
||||||
|
|
||||||
|
SET ( ASTEROIDSEDITOR_SOURCES
|
||||||
|
asteroids/AsteroidEntity.cc
|
||||||
|
asteroids/Controller.cc
|
||||||
|
asteroids/ControllerCommands.cc
|
||||||
|
asteroids/EntityFactory.cc
|
||||||
|
asteroids/EnumToString.cc
|
||||||
|
asteroids/Game.cc
|
||||||
|
asteroids/editormain.cc
|
||||||
|
asteroids/Model.cc
|
||||||
|
asteroids/ModelCommands.cc
|
||||||
|
asteroids/Physics.cc
|
||||||
|
asteroids/RocketEntity.cc
|
||||||
|
asteroids/ShipEntity.cc
|
||||||
|
asteroids/View.cc
|
||||||
|
)
|
||||||
|
|
||||||
ADD_EXECUTABLE ( fysxasteroids ${ASTEROIDS_SOURCES} )
|
ADD_EXECUTABLE ( fysxasteroids ${ASTEROIDS_SOURCES} )
|
||||||
|
ADD_EXECUTABLE ( fysxasteroidseditor ${ASTEROIDSEDITOR_SOURCES} )
|
||||||
|
|
||||||
TARGET_LINK_LIBRARIES ( fysxasteroids
|
TARGET_LINK_LIBRARIES ( fysxasteroids
|
||||||
Engine
|
Engine
|
||||||
oglft
|
oglft
|
||||||
)
|
)
|
||||||
|
|
||||||
|
TARGET_LINK_LIBRARIES ( fysxasteroidseditor
|
||||||
|
Engine
|
||||||
|
oglft
|
||||||
|
)
|
||||||
|
|
||||||
SET ( DATA_DIR
|
SET ( DATA_DIR
|
||||||
data/
|
data/
|
||||||
)
|
)
|
||||||
|
|
||||||
|
SET ( DATA_FILES
|
||||||
|
asteroids.rc
|
||||||
|
config.rc
|
||||||
|
)
|
||||||
|
|
||||||
INSTALL (TARGETS fysxasteroids
|
INSTALL (TARGETS fysxasteroids
|
||||||
RUNTIME DESTINATION bin
|
RUNTIME DESTINATION bin
|
||||||
LIBRARY DESTINATION lib
|
LIBRARY DESTINATION lib
|
||||||
)
|
)
|
||||||
|
|
||||||
|
INSTALL (TARGETS fysxasteroidseditor
|
||||||
|
RUNTIME DESTINATION bin
|
||||||
|
LIBRARY DESTINATION lib
|
||||||
|
)
|
||||||
|
|
||||||
INSTALL (DIRECTORY ${DATA_DIR}
|
INSTALL (DIRECTORY ${DATA_DIR}
|
||||||
DESTINATION share/fysxasteroids/data
|
DESTINATION share/fysxasteroids/data
|
||||||
)
|
)
|
||||||
|
|
||||||
|
INSTALL (FILES ${DATA_FILES}
|
||||||
|
DESTINATION share/fysxasteroids
|
||||||
|
)
|
||||||
|
|
|
@ -9,3 +9,6 @@ set ship_maxspeed 10
|
||||||
set ship_acceleration 10
|
set ship_acceleration 10
|
||||||
set ship_rotationspeed 180
|
set ship_rotationspeed 180
|
||||||
set ship_maxattackrate 10
|
set ship_maxattackrate 10
|
||||||
|
|
||||||
|
set rocket_timetolive 1.0
|
||||||
|
set rocket_speed 15
|
||||||
|
|
Loading…
Reference in New Issue