Skip to content

Commit

Permalink
Set properties for plist file
Browse files Browse the repository at this point in the history
Needed for signing, and in general helpful
  • Loading branch information
jlskuz committed Feb 23, 2024
1 parent 300ef79 commit 521de0f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,18 @@ if (WIN32)
target_link_libraries(filelight kdewin)
endif()

if(APPLE)
set_target_properties(filelight PROPERTIES
MACOSX_BUNDLE_DISPLAY_NAME "Filelight"
MACOSX_BUNDLE_BUNDLE_NAME "Filelight"
MACOSX_BUNDLE_LONG_VERSION_STRING "Filelight ${RELEASE_SERVICE_VERSION}"
MACOSX_BUNDLE_SHORT_VERSION_STRING "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}"
MACOSX_BUNDLE_BUNDLE_VERSION "${RELEASE_SERVICE_VERSION}"
MACOSX_BUNDLE_GUI_IDENTIFIER "org.kde.filelight"
MACOSX_BUNDLE_COPYRIGHT "2006-2024 The Filelight Developers")

endif()

install(TARGETS filelight ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
ecm_qt_install_logging_categories(
EXPORT FILELIGHT
Expand Down

0 comments on commit 521de0f

Please sign in to comment.