2011-12-29 17:50:22 -05:00
|
|
|
# Copyright (C) 2011 Felix Geyer <debfx@fobos.de>
|
2017-06-09 17:40:36 -04:00
|
|
|
# Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
2011-12-29 17:50:22 -05:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 2 or (at your option)
|
|
|
|
# version 3 of the License.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2014-05-17 19:33:22 -04:00
|
|
|
add_subdirectory(translations)
|
|
|
|
|
2017-03-16 18:34:28 -04:00
|
|
|
file(GLOB wordlists_files "wordlists/*.wordlist")
|
|
|
|
install(FILES ${wordlists_files} DESTINATION ${DATA_INSTALL_DIR}/wordlists)
|
2017-03-04 09:10:50 -05:00
|
|
|
|
2020-06-04 08:16:47 -04:00
|
|
|
# Copy wordlists to build dir for use in tests
|
|
|
|
file(COPY "wordlists" DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
|
2019-03-24 09:26:34 -04:00
|
|
|
if(UNIX AND NOT APPLE AND NOT HAIKU)
|
2022-04-04 19:04:18 -04:00
|
|
|
# Flatpak requires all host accessible files to use filenames based upon the app id
|
|
|
|
if(KEEPASSXC_DIST_FLATPAK)
|
|
|
|
set(APP_ICON_NAME "${APP_ID}")
|
|
|
|
set(MIME_ICON "${APP_ID}-application-x-keepassxc")
|
|
|
|
configure_file(linux/keepassxc.xml.in ${CMAKE_CURRENT_BINARY_DIR}/linux/${APP_ID}.xml @ONLY)
|
|
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/linux/${APP_ID}.xml DESTINATION ${CMAKE_INSTALL_DATADIR}/mime/packages)
|
|
|
|
|
|
|
|
file(GLOB_RECURSE ICON_FILES LIST_DIRECTORIES false
|
|
|
|
"icons/application/*/keepassxc*.png"
|
|
|
|
"icons/application/*/*keepassxc*.svg")
|
|
|
|
foreach(icon_match ${ICON_FILES})
|
|
|
|
get_filename_component(icon_name ${icon_match} NAME)
|
|
|
|
get_filename_component(icon_dir ${icon_match} DIRECTORY)
|
|
|
|
# Prefix all icons with application id: "org.keepassxc.KeePassXC"
|
|
|
|
string(REGEX REPLACE "^keepassxc(.*)?(\\.png|\\.svg)$" "${APP_ID}\\1\\2" icon_name ${icon_name})
|
|
|
|
string(REGEX REPLACE "^(application-x-keepassxc\\.svg)$" "${APP_ID}-\\1" icon_name ${icon_name})
|
|
|
|
# Find icon sub dir ex. "scalable/mimetypes/"
|
|
|
|
file(RELATIVE_PATH icon_subdir ${CMAKE_CURRENT_SOURCE_DIR}/icons/application ${icon_dir})
|
|
|
|
install(FILES ${icon_match} DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/${icon_subdir}
|
|
|
|
RENAME ${icon_name})
|
|
|
|
endforeach()
|
|
|
|
else()
|
|
|
|
set(APP_ICON_NAME "keepassxc")
|
|
|
|
set(MIME_ICON "application-x-keepassxc")
|
|
|
|
configure_file(linux/keepassxc.xml.in ${CMAKE_CURRENT_BINARY_DIR}/linux/keepassxc.xml @ONLY)
|
|
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/linux/keepassxc.xml DESTINATION ${CMAKE_INSTALL_DATADIR}/mime/packages)
|
|
|
|
|
|
|
|
install(DIRECTORY icons/application/ DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor
|
|
|
|
FILES_MATCHING PATTERN "keepassx*.png" PATTERN "keepassx*.svg"
|
|
|
|
PATTERN "status" EXCLUDE PATTERN "actions" EXCLUDE PATTERN "categories" EXCLUDE)
|
|
|
|
install(DIRECTORY icons/application/ DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor
|
|
|
|
FILES_MATCHING PATTERN "application-x-keepassxc.svg" PATTERN "status"
|
|
|
|
EXCLUDE PATTERN "actions" EXCLUDE PATTERN "categories" EXCLUDE)
|
|
|
|
endif(KEEPASSXC_DIST_FLATPAK)
|
|
|
|
configure_file(linux/${APP_ID}.desktop.in ${CMAKE_CURRENT_BINARY_DIR}/linux/${APP_ID}.desktop @ONLY)
|
|
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/linux/${APP_ID}.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications)
|
|
|
|
install(FILES linux/${APP_ID}.appdata.xml DESTINATION ${CMAKE_INSTALL_DATADIR}/metainfo)
|
2019-03-24 09:26:34 -04:00
|
|
|
endif(UNIX AND NOT APPLE AND NOT HAIKU)
|
2012-05-02 18:09:34 -04:00
|
|
|
|
2012-05-21 14:24:06 -04:00
|
|
|
if(APPLE)
|
2016-11-03 00:05:30 -04:00
|
|
|
install(FILES macosx/keepassxc.icns DESTINATION ${DATA_INSTALL_DIR})
|
2012-05-21 14:24:06 -04:00
|
|
|
endif()
|
|
|
|
|
2022-09-23 14:25:54 -04:00
|
|
|
if(WIN32)
|
|
|
|
install(FILES windows/qt.conf DESTINATION ${BIN_INSTALL_DIR})
|
|
|
|
endif()
|
|
|
|
|
2020-03-08 20:27:16 -04:00
|
|
|
install(FILES icons/application/256x256/apps/keepassxc.png DESTINATION ${DATA_INSTALL_DIR}/icons/application/256x256/apps)
|
2019-06-18 20:46:46 -04:00
|
|
|
|
2020-05-29 10:00:07 -04:00
|
|
|
add_custom_target(icons)
|
|
|
|
add_custom_command(TARGET icons
|
|
|
|
COMMAND bash ./icons/minify.sh
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
if(APPLE)
|
|
|
|
add_custom_command(TARGET icons
|
|
|
|
COMMAND png2icns macosx/keepassxc.icns icons/application/256x256/apps/keepassxc.png
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
endif()
|
2019-02-05 12:06:33 -05:00
|
|
|
|
2020-05-29 10:00:07 -04:00
|
|
|
# ICO for Windows
|
|
|
|
add_custom_command(TARGET icons
|
2019-02-05 12:06:33 -05:00
|
|
|
COMMAND bash ./windows/create-ico.sh icons/application/scalable/apps/keepassxc.svg windows/keepassxc.ico
|
|
|
|
COMMAND bash ./windows/create-ico.sh icons/application/scalable/mimetypes/application-x-keepassxc.svg windows/keepassxc-kdbx.ico
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
|