6 lines
191 B
CMake
6 lines
191 B
CMake
# CMakeLists for sounds/ directory
|
|
#
|
|
# Installs default sound files
|
|
|
|
FILE(GLOB sounds "${CMAKE_CURRENT_SOURCE_DIR}/sounds/*.raw")
|
|
INSTALL(FILES ${sounds} DESTINATION share/cockatrice/sounds)
|