2016-04-05 12:49:19 +00:00
|
|
|
# Aseprite Desktop Integration Module
|
|
|
|
# Copyright (C) 2016 Gabriel Rauter
|
2016-05-24 16:26:18 +00:00
|
|
|
# Copyright (C) 2016 David Capello
|
2016-04-05 12:49:19 +00:00
|
|
|
#
|
2016-04-05 22:15:40 +00:00
|
|
|
# Licensed under the the MIT License (https://opensource.org/licenses/MIT).
|
2016-04-05 12:49:19 +00:00
|
|
|
|
2016-04-01 14:05:15 +00:00
|
|
|
if(UNIX AND NOT APPLE)
|
2016-05-24 16:26:18 +00:00
|
|
|
# Desktop shortcut
|
|
|
|
install(FILES aseprite.desktop
|
|
|
|
DESTINATION share/applications)
|
|
|
|
|
|
|
|
# GNOME Thumbnailer
|
2016-04-01 14:05:15 +00:00
|
|
|
install(FILES mime/aseprite.xml
|
|
|
|
DESTINATION share/mime/packages)
|
|
|
|
install(PROGRAMS aseprite-thumbnailer
|
|
|
|
DESTINATION bin)
|
|
|
|
install(FILES gnome/aseprite.thumbnailer
|
|
|
|
DESTINATION share/thumbnailers)
|
2016-05-24 16:26:18 +00:00
|
|
|
|
|
|
|
# Qt Thumbnailer
|
2016-04-01 14:05:15 +00:00
|
|
|
if(WITH_QT_THUMBNAILER)
|
|
|
|
add_subdirectory(kde)
|
|
|
|
endif()
|
|
|
|
endif()
|