aseprite/desktop/CMakeLists.txt

25 lines
651 B
CMake
Raw Normal View History

2016-04-05 12:49:19 +00:00
# Aseprite Desktop Integration Module
# Copyright (C) 2016 Gabriel Rauter
# 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
if(UNIX AND NOT APPLE)
# Desktop shortcut
install(FILES aseprite.desktop
DESTINATION share/applications)
# GNOME Thumbnailer
install(FILES mime/aseprite.xml
DESTINATION share/mime/packages)
install(PROGRAMS aseprite-thumbnailer
DESTINATION bin)
install(FILES gnome/aseprite.thumbnailer
DESTINATION share/thumbnailers)
# Qt Thumbnailer
if(WITH_QT_THUMBNAILER)
add_subdirectory(kde)
endif()
endif()