1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-29 15:19:44 +02:00
audacity/images/CMakeLists.txt
Sol Fisher Romanoff 40d57bcf62
Change .aup3 MIMEtype to x-audacity-project
.aup3 isn't a Tenacity project file, it's just that Tenacity uses the
Audacity project file format.

Signed-off-by: Sol Fisher Romanoff <sol@solfisher.com>
Reference-to: https://github.com/tenacityteam/tenacity/pull/638
2022-01-26 03:41:32 +00:00

30 lines
816 B
CMake
Executable File

set( TARGET images )
set( TARGET_ROOT ${CMAKE_SOURCE_DIR}/images )
message( STATUS "========== Configuring ${TARGET} ==========" )
def_vars()
# This isn't really a target...
list( APPEND PIXMAPS
${_SRCDIR}/gnome-mime-application-x-audacity-project.xpm
${_SRCDIR}/icons/16x16/tenacity16.xpm
${_SRCDIR}/icons/32x32/tenacity32.xpm
${_SRCDIR}/icons/48x48/tenacity.xpm
)
if( NOT CMAKE_SYSTEM_NAME MATCHES "Darwin" )
if( NOT WIN32)
install( FILES "${_SRCDIR}/tenacity.svg"
DESTINATION "${_DATADIR}/icons/hicolor/scalable/apps" )
install( DIRECTORY "${_SRCDIR}/icons/"
DESTINATION "${_DATADIR}/icons/hicolor"
FILES_MATCHING PATTERN "*.png" )
install( FILES ${PIXMAPS}
DESTINATION "${_DATADIR}/pixmaps" )
endif()
endif()