Merge pull request #1832 from tooomm/restructure
move sounds+themes folder inside cockatrice
|
|
@ -114,6 +114,9 @@ SET(cockatrice_SOURCES
|
|||
${VERSION_STRING_CPP}
|
||||
)
|
||||
|
||||
add_subdirectory(sounds)
|
||||
add_subdirectory(themes)
|
||||
|
||||
set(cockatrice_RESOURCES cockatrice.qrc)
|
||||
|
||||
IF(UPDATE_TRANSLATIONS)
|
||||
|
|
|
|||
19
cockatrice/sounds/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# CMakeLists for sounds directory
|
||||
#
|
||||
# add sounds subfolders
|
||||
|
||||
SET(defsounds
|
||||
Default
|
||||
Legacy
|
||||
)
|
||||
|
||||
if(UNIX)
|
||||
if(APPLE)
|
||||
INSTALL(DIRECTORY ${defsounds} DESTINATION cockatrice.app/Contents/Resources/sounds/)
|
||||
else()
|
||||
# Assume linux
|
||||
INSTALL(DIRECTORY ${defsounds} DESTINATION share/cockatrice/sounds/)
|
||||
endif()
|
||||
elseif(WIN32)
|
||||
INSTALL(DIRECTORY ${defsounds} DESTINATION sounds/)
|
||||
endif()
|
||||
BIN
cockatrice/sounds/Default/attack_step.wav
Normal file
BIN
cockatrice/sounds/Default/buddy_join.wav
Normal file
BIN
cockatrice/sounds/Default/buddy_leave.wav
Normal file
BIN
cockatrice/sounds/Default/end_step.wav
Normal file
BIN
cockatrice/sounds/Default/player_join.wav
Normal file
BIN
cockatrice/sounds/Default/start_combat.wav
Normal file
BIN
cockatrice/sounds/Default/tap_card.wav
Normal file
BIN
cockatrice/sounds/Legacy/all_mention.wav
Normal file
BIN
cockatrice/sounds/Legacy/chat_mention.wav
Normal file
BIN
cockatrice/sounds/Legacy/draw_step.wav
Normal file
BIN
cockatrice/sounds/Legacy/play_card.wav
Normal file
BIN
cockatrice/sounds/Legacy/player_join.wav
Normal file
BIN
cockatrice/sounds/Legacy/private_message.wav
Normal file
BIN
cockatrice/sounds/Legacy/shuffle.wav
Normal file
BIN
cockatrice/sounds/Legacy/tap_card.wav
Normal file
BIN
cockatrice/sounds/Legacy/untap_card.wav
Normal file
22
cockatrice/themes/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
# CMakeLists for themes directory
|
||||
#
|
||||
# add themes subfolders
|
||||
|
||||
SET(defthemes
|
||||
Default
|
||||
Fabric
|
||||
Leather
|
||||
Plasma
|
||||
VelvetMarble
|
||||
)
|
||||
|
||||
if(UNIX)
|
||||
if(APPLE)
|
||||
INSTALL(DIRECTORY ${defthemes} DESTINATION cockatrice.app/Contents/Resources/themes/)
|
||||
else()
|
||||
# Assume linux
|
||||
INSTALL(DIRECTORY ${defthemes} DESTINATION share/cockatrice/themes/)
|
||||
endif()
|
||||
elseif(WIN32)
|
||||
INSTALL(DIRECTORY ${defthemes} DESTINATION themes/)
|
||||
endif()
|
||||
4
cockatrice/themes/Default/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# Ignore everything in this directory
|
||||
*
|
||||
# Except this file
|
||||
!.gitignore
|
||||
BIN
cockatrice/themes/Fabric/zones/handzone.png
Normal file
|
After Width: | Height: | Size: 313 KiB |
BIN
cockatrice/themes/Fabric/zones/playerzone.png
Normal file
|
After Width: | Height: | Size: 147 KiB |
BIN
cockatrice/themes/Fabric/zones/stackzone.png
Normal file
|
After Width: | Height: | Size: 154 KiB |
BIN
cockatrice/themes/Fabric/zones/tablezone.png
Normal file
|
After Width: | Height: | Size: 257 KiB |
BIN
cockatrice/themes/Leather/zones/handzone.png
Normal file
|
After Width: | Height: | Size: 151 KiB |
BIN
cockatrice/themes/Leather/zones/playerzone.png
Normal file
|
After Width: | Height: | Size: 160 KiB |
BIN
cockatrice/themes/Leather/zones/stackzone.png
Normal file
|
After Width: | Height: | Size: 165 KiB |
BIN
cockatrice/themes/Leather/zones/tablezone.png
Normal file
|
After Width: | Height: | Size: 174 KiB |
BIN
cockatrice/themes/Plasma/zones/handzone.png
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
cockatrice/themes/Plasma/zones/playerzone.png
Normal file
|
After Width: | Height: | Size: 90 KiB |
BIN
cockatrice/themes/Plasma/zones/stackzone.png
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
cockatrice/themes/Plasma/zones/tablezone.png
Normal file
|
After Width: | Height: | Size: 50 KiB |
BIN
cockatrice/themes/VelvetMarble/zones/handzone.jpg
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
cockatrice/themes/VelvetMarble/zones/playerzone.jpg
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
cockatrice/themes/VelvetMarble/zones/stackzone.jpg
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
cockatrice/themes/VelvetMarble/zones/tablezone.jpg
Normal file
|
After Width: | Height: | Size: 110 KiB |