share/hedgewars/Data/Missions/CMakeLists.txt
author smxx
Wed, 10 Feb 2010 00:55:40 +0000
changeset 2786 85f6425a4d74
child 2788 3590214a0023
permissions -rw-r--r--
Engine: * Added LUA scripting support for trainings (and maybe soon) scenarios/missions * Converted Shotgun and Bazooka Training to LUA * New dependency: LUA 5.1 * New Mission Objectives window * Extended default keybinds for non-iPhone builds * NOTE: Script function names etc. might change soon so don't work too hard on your own missions (for now)! This is experimental! Frontend: * Added support for new training maps/LUA scripts
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2786
85f6425a4d74 Engine:
smxx
parents:
diff changeset
     1
file(GLOB Trainings t*.txt t*.lua)
85f6425a4d74 Engine:
smxx
parents:
diff changeset
     2
file(GLOB Singleplayer s*.txt s*.lua)
85f6425a4d74 Engine:
smxx
parents:
diff changeset
     3
file(GLOB Cooperative c*.txt c*.lua)
85f6425a4d74 Engine:
smxx
parents:
diff changeset
     4
85f6425a4d74 Engine:
smxx
parents:
diff changeset
     5
install(FILES
85f6425a4d74 Engine:
smxx
parents:
diff changeset
     6
	${Trainings}
85f6425a4d74 Engine:
smxx
parents:
diff changeset
     7
	${Singleplayer}
85f6425a4d74 Engine:
smxx
parents:
diff changeset
     8
	${Cooperative}
85f6425a4d74 Engine:
smxx
parents:
diff changeset
     9
	DESTINATION ${SHAREPATH}Data/Trainings)