share/hedgewars/Data/Missions/CMakeLists.txt
author smxx
Thu, 25 Feb 2010 13:02:08 +0000
changeset 2863 9eb53b1f1842
parent 2788 3590214a0023
child 3011 73c8f618fd8b
permissions -rw-r--r--
Engine: * Added a new window to the game's start that shows special rules affecting the current game (e.g. karma or low gravity)
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)