mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-08 17:13:57 -07:00
16 lines
453 B
CMake
16 lines
453 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) # Windows (including 64bit)
|
|
install(DIRECTORY ${defthemes} DESTINATION themes/)
|
|
endif()
|