mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-12 00:54:53 -07:00
16 lines
425 B
CMake
16 lines
425 B
CMake
# CMakeLists for themes directory
|
|
#
|
|
# add themes subfolders
|
|
|
|
set(defthemes Default Fabric Fusion Leather Plasma VelvetMarble)
|
|
|
|
if(UNIX)
|
|
if(APPLE)
|
|
install(DIRECTORY ${defthemes} DESTINATION Cockatrice.app/Contents/Resources/themes/)
|
|
else()
|
|
# Assume linux
|
|
install(DIRECTORY ${defthemes} DESTINATION share/cockatrice/themes/)
|
|
endif()
|
|
elseif(WIN32)
|
|
install(DIRECTORY ${defthemes} DESTINATION themes/)
|
|
endif()
|