1
file(GLOB Trainings *.hwt)
2
file(GLOB Singleplayer *.hwm)
3
file(GLOB Cooperative *.hwc)
4
5
install(FILES
6
${Trainings}
7
${Singleplayer}
8
${Cooperative}
9
DESTINATION ${SHAREPATH}Data/Missions)