share/hedgewars/Data/Missions/CMakeLists.txt
author smxx
Wed, 10 Feb 2010 01:02:20 +0000
changeset 2788 3590214a0023
parent 2786 85f6425a4d74
child 3011 73c8f618fd8b
permissions -rw-r--r--
* Forgot to update CMakeLists.txt for proper INSTALL
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)