share/hedgewars/Data/Scripts/Multiplayer/CMakeLists.txt
author Wuzzy <Wuzzy2@mail.ru>
Sat, 10 Feb 2018 12:44:40 +0100
changeset 12956 89930daecaab
parent 10510 9329dab04490
permissions -rw-r--r--
Add minigun to scripts. Also add a few missing ammos to BRW and RW
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4513
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
diff changeset
     1
file(GLOB luafiles *.lua)
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
diff changeset
     2
file(GLOB cfgfiles *.cfg)
10493
mikade <redgrinner@gmail.com>
parents: 8443
diff changeset
     3
file(GLOB hwpfiles *.hwp)
4513
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
diff changeset
     4
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
diff changeset
     5
install(FILES
8443
2debc9b9f917 remove trailing whitespaces from share too
koda
parents: 4513
diff changeset
     6
    ${luafiles}
2debc9b9f917 remove trailing whitespaces from share too
koda
parents: 4513
diff changeset
     7
    ${cfgfiles}
10510
9329dab04490 some whitespace fixes
sheepluva
parents: 10493
diff changeset
     8
    ${hwpfiles}
8443
2debc9b9f917 remove trailing whitespaces from share too
koda
parents: 4513
diff changeset
     9
    DESTINATION ${SHAREPATH}Data/Scripts/Multiplayer)