share/hedgewars/Data/Graphics/CMakeLists.txt
author Wuzzy <Wuzzy2@mail.ru>
Thu, 25 Apr 2019 23:01:05 +0200
changeset 14844 e239378a9400
parent 8443 2debc9b9f917
permissions -rw-r--r--
Prevent entering “/”, “\” and “:” in team and scheme names. The name of teams and schems is saved in the file name itself, so these characters would cause trouble as they are used in path names in Linux and Windows.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
969
7e8a87136fae - Add CMake script for Hats folder
unc0rr
parents: 822
diff changeset
     1
add_subdirectory(AmmoMenu)
2747
7889a3a9724f Server:
smxx
parents: 969
diff changeset
     2
add_subdirectory(Flags)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 181
diff changeset
     3
add_subdirectory(Graves)
969
7e8a87136fae - Add CMake script for Hats folder
unc0rr
parents: 822
diff changeset
     4
add_subdirectory(Hats)
822
2ae8fd8ef804 Use 'rope gun' sprite
unc0rr
parents: 562
diff changeset
     5
add_subdirectory(Hedgehog)
4748
ce9b48de1f52 sudden death, now with visual and audial effects :D
Henek
parents: 2747
diff changeset
     6
add_subdirectory(SuddenDeath)
6048
ae213ef7030a PIMP'ed up training screen. special thanks to mikade for supplying the pics <3
sheepluva
parents: 5976
diff changeset
     7
add_subdirectory(Missions)
562
d1a9035175ed - Simplify build system files
unc0rr
parents: 536
diff changeset
     8
8443
2debc9b9f917 remove trailing whitespaces from share too
koda
parents: 6048
diff changeset
     9
file(GLOB BaseSprites *.png)
5976
306cedbeb213 fixed several 'retina display' images and added a bunch more (though just from upscaling the normal ones; might be nice to have 'em redrawn at a real higher resolution)
koda
parents: 4748
diff changeset
    10
list(REMOVE_ITEM BaseSprites *@2x.png)
562
d1a9035175ed - Simplify build system files
unc0rr
parents: 536
diff changeset
    11
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 181
diff changeset
    12
install(FILES
8443
2debc9b9f917 remove trailing whitespaces from share too
koda
parents: 6048
diff changeset
    13
    ${BaseSprites}
2debc9b9f917 remove trailing whitespaces from share too
koda
parents: 6048
diff changeset
    14
    DESTINATION ${SHAREPATH}Data/Graphics)