updated to new folder locations

- `sounds` and `themes` moved into `cockatrice/`

moved subdirectory reference
`/cmakelists` to `/cockatrice/cmakelists`
This commit is contained in:
tooomm 2016-02-20 15:20:34 +01:00
parent bf42319296
commit 754e666eaa
37 changed files with 3 additions and 2 deletions

View file

@ -1,19 +0,0 @@
# 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()