mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-08 17:13:57 -07:00
16 lines
418 B
CMake
16 lines
418 B
CMake
# 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) # Windows (including 64bit)
|
|
install(DIRECTORY ${defsounds} DESTINATION sounds/)
|
|
endif()
|