share/hedgewars/Data/Missions/CMakeLists.txt
author smxx
Mon, 15 Feb 2010 21:56:49 +0000
changeset 2815 c1daf1213cbe
parent 2788 3590214a0023
child 3011 73c8f618fd8b
permissions -rw-r--r--
Training Missions: * Missions won't fail if you win within the last seconds (check for win) * Granting more time for Bazooka training to finish
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2788
3590214a0023 * Forgot to update CMakeLists.txt for proper INSTALL
smxx
parents: 2786
diff changeset
     1
file(GLOB Trainings *.hwt)
3590214a0023 * Forgot to update CMakeLists.txt for proper INSTALL
smxx
parents: 2786
diff changeset
     2
file(GLOB Singleplayer *.hwm)
3590214a0023 * Forgot to update CMakeLists.txt for proper INSTALL
smxx
parents: 2786
diff changeset
     3
file(GLOB Cooperative *.hwc)
2786
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}
2788
3590214a0023 * Forgot to update CMakeLists.txt for proper INSTALL
smxx
parents: 2786
diff changeset
     9
	DESTINATION ${SHAREPATH}Data/Missions)