servatrice/cockatrice/sounds/CMakeLists.txt
tooomm 754e666eaa updated to new folder locations
- `sounds` and `themes` moved into `cockatrice/`

moved subdirectory reference
`/cmakelists` to `/cockatrice/cmakelists`
2016-02-24 15:41:04 +01:00

19 lines
419 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)
INSTALL(DIRECTORY ${defsounds} DESTINATION sounds/)
endif()