sound themes

This commit is contained in:
Fabio Bas 2015-09-13 02:01:50 +02:00
parent 226a8cc017
commit 85aa866e02
22 changed files with 132 additions and 72 deletions

View file

@ -1,16 +1,19 @@
# CMakeLists for sounds/ directory
# CMakeLists for sounds directory
#
# Installs default sound files
# add sounds subfolders
FILE(GLOB sounds "${CMAKE_CURRENT_SOURCE_DIR}/*.wav")
SET(defsounds
Default
Legacy
)
if(UNIX)
if(APPLE)
INSTALL(FILES ${sounds} DESTINATION cockatrice.app/Contents/Resources/sounds/)
INSTALL(DIRECTORY ${defsounds} DESTINATION cockatrice.app/Contents/Resources/sounds/)
else()
# Assume linux
INSTALL(FILES ${sounds} DESTINATION share/cockatrice/sounds/)
INSTALL(DIRECTORY ${defsounds} DESTINATION share/cockatrice/sounds/)
endif()
elseif(WIN32)
INSTALL(FILES ${sounds} DESTINATION sounds/)
endif()
INSTALL(DIRECTORY ${defsounds} DESTINATION sounds/)
endif()

Binary file not shown.

Binary file not shown.

BIN
sounds/Legacy/draw_step.wav Normal file

Binary file not shown.

BIN
sounds/Legacy/play_card.wav Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
sounds/Legacy/shuffle.wav Normal file

Binary file not shown.

BIN
sounds/Legacy/tap_card.wav Normal file

Binary file not shown.

Binary file not shown.