share/hedgewars/Data/Missions/CMakeLists.txt
author smxx
Sat, 06 Mar 2010 13:55:58 +0000
changeset 2958 e6f7620da87e
parent 2788 3590214a0023
child 3011 73c8f618fd8b
permissions -rw-r--r--
Engine: * Changed order of game goals * Added texture drawing (based on pixel width/height; unused in HEAD right now but working on some ideas) * Added comments to trainings
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)