share/hedgewars/Data/Graphics/CMakeLists.txt
author Wuzzy <Wuzzy2@mail.ru>
Thu, 11 Jul 2019 16:24:09 +0200
changeset 15236 c10e9261ab9c
parent 8443 2debc9b9f917
permissions -rw-r--r--
Make lowest line of Splash image frames transparent to work around scaling issues The Splash image is scaled. Sometimes, the lowest line is repeated on the top, which caused some weird lines to appear above big splashes (e.g. piano). This has been done fully automated with a script. Only the alpha channel was changed. The color information is preserved.
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)