share/hedgewars/Data/Scripts/Multiplayer/CMakeLists.txt
author unc0rr
Tue, 14 Jan 2014 12:44:29 +0400
changeset 9985 42cd42e44c9a
parent 8443 2debc9b9f917
child 10493 bcbf029e6b08
permissions -rw-r--r--
GravRacer, GravHigh, GravMutant, Grav... uhm... shoppamap? Easy! Gravity script could be combined with any other script now. TODO: security concerns? script name to load is passed via game scheme.
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)
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
diff changeset
     3
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
diff changeset
     4
install(FILES
8443
2debc9b9f917 remove trailing whitespaces from share too
koda
parents: 4513
diff changeset
     5
    ${luafiles}
2debc9b9f917 remove trailing whitespaces from share too
koda
parents: 4513
diff changeset
     6
    ${cfgfiles}
2debc9b9f917 remove trailing whitespaces from share too
koda
parents: 4513
diff changeset
     7
    DESTINATION ${SHAREPATH}Data/Scripts/Multiplayer)