From 1b2c839ff03d9b248575361f5ab95218bb4b0f32 Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Sat, 21 Jun 2014 17:28:58 +0200 Subject: [PATCH] osx: install sounds and zonebg as cockatrice's resources --- sounds/CMakeLists.txt | 2 +- zonebg/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sounds/CMakeLists.txt b/sounds/CMakeLists.txt index e38c9090..cd9f6c33 100644 --- a/sounds/CMakeLists.txt +++ b/sounds/CMakeLists.txt @@ -6,7 +6,7 @@ FILE(GLOB sounds "${CMAKE_CURRENT_SOURCE_DIR}/*.raw") if(UNIX) if(APPLE) - INSTALL(FILES ${sounds} DESTINATION sounds/) + INSTALL(FILES ${sounds} DESTINATION cockatrice.app/Contents/Resources/sounds/) else() # Assume linux INSTALL(FILES ${sounds} DESTINATION share/cockatrice/sounds/) diff --git a/zonebg/CMakeLists.txt b/zonebg/CMakeLists.txt index 961c4e12..e2904502 100644 --- a/zonebg/CMakeLists.txt +++ b/zonebg/CMakeLists.txt @@ -6,7 +6,7 @@ FILE(GLOB zonebg "${CMAKE_CURRENT_SOURCE_DIR}/*.*") if(UNIX) if(APPLE) - INSTALL(FILES ${zonebg} DESTINATION zonebg/) + INSTALL(FILES ${zonebg} DESTINATION cockatrice.app/Contents/Resources/zonebg/) else() # Assume linux INSTALL(FILES ${zonebg} DESTINATION share/cockatrice/zonebg/)