Create sounds/zonebg CMakeLists.txt

This commit is contained in:
Fabio Bas 2014-06-10 14:11:16 +02:00
parent 4fc6831784
commit 79c805b835
3 changed files with 6 additions and 5 deletions

View file

@ -6,12 +6,9 @@ endif(WITH_SERVER)
if (NOT WITHOUT_CLIENT)
add_subdirectory(cockatrice)
add_subdirectory(oracle)
add_subdirectory(sounds)
add_subdirectory(zonebg)
endif(NOT WITHOUT_CLIENT)
if (WITH_TESTCLIENT)
add_subdirectory(testclient)
endif(WITH_TESTCLIENT)
FILE(GLOB sounds "${CMAKE_CURRENT_SOURCE_DIR}/sounds/*.raw")
INSTALL(FILES ${sounds} DESTINATION share/cockatrice/sounds)
FILE(GLOB zonebg "${CMAKE_CURRENT_SOURCE_DIR}/zonebg/*.*")
INSTALL(FILES ${zonebg} DESTINATION share/cockatrice/zonebg)

2
sounds/CMakeLists.txt Normal file
View file

@ -0,0 +1,2 @@
FILE(GLOB sounds "${CMAKE_CURRENT_SOURCE_DIR}/sounds/*.raw")
INSTALL(FILES ${sounds} DESTINATION share/cockatrice/sounds)

2
zonebg/CMakeLists.txt Normal file
View file

@ -0,0 +1,2 @@
FILE(GLOB zonebg "${CMAKE_CURRENT_SOURCE_DIR}/zonebg/*.*")
INSTALL(FILES ${zonebg} DESTINATION share/cockatrice/zonebg)