keepassxc/src/CMakeLists.txt

264 lines
7.8 KiB
CMake
Raw Normal View History

2010-08-07 09:10:44 -04:00
# Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
#
# 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/>.
2012-05-21 17:37:29 -04:00
include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR})
2010-08-13 12:08:06 -04:00
2012-05-21 17:37:29 -04:00
configure_file(config-keepassx.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-keepassx.h)
2010-08-13 12:08:06 -04:00
2010-08-07 09:10:44 -04:00
set(keepassx_SOURCES
autotype/AutoType.cpp
autotype/AutoTypeAction.cpp
autotype/AutoTypePlatformPlugin.h
autotype/AutoTypeSelectDialog.cpp
autotype/AutoTypeSelectView.cpp
autotype/ShortcutWidget.cpp
2012-07-22 08:04:50 -04:00
autotype/WildcardMatcher.cpp
autotype/WindowSelectComboBox.cpp
autotype/test/AutoTypeTestInterface.h
core/ArgumentParser.cpp
core/AutoTypeAssociations.cpp
2011-12-25 13:17:40 -05:00
core/Config.cpp
2010-08-07 09:10:44 -04:00
core/Database.cpp
2010-09-19 15:22:24 -04:00
core/DatabaseIcons.cpp
core/Endian.cpp
2010-08-07 09:10:44 -04:00
core/Entry.cpp
core/EntryAttachments.cpp
core/EntryAttributes.cpp
2012-07-18 14:44:28 -04:00
core/FilePath.cpp
core/Global.h
2010-08-07 09:10:44 -04:00
core/Group.cpp
core/ListDeleter.h
2010-08-07 09:10:44 -04:00
core/Metadata.cpp
core/PasswordGenerator.cpp
core/qsavefile.cpp
core/qsavefile_p.h
core/SignalMultiplexer.cpp
core/TimeDelta.cpp
2010-08-07 09:10:44 -04:00
core/TimeInfo.cpp
2012-04-10 09:31:47 -04:00
core/Tools.cpp
2010-08-07 09:10:44 -04:00
core/Uuid.cpp
crypto/Crypto.cpp
crypto/CryptoHash.cpp
crypto/Random.cpp
crypto/salsa20/ecrypt-config.h
crypto/salsa20/ecrypt-machine.h
crypto/salsa20/ecrypt-portable.h
crypto/salsa20/ecrypt-sync.h
crypto/salsa20/salsa20.c
crypto/SymmetricCipher.cpp
crypto/SymmetricCipherBackend.h
crypto/SymmetricCipherGcrypt.cpp
crypto/SymmetricCipherSalsa20.cpp
format/KeePass1.h
format/KeePass1Reader.cpp
format/KeePass2.h
format/KeePass2RandomStream.cpp
format/KeePass2Reader.cpp
format/KeePass2Writer.cpp
format/KeePass2XmlReader.cpp
format/KeePass2XmlWriter.cpp
2012-05-02 09:37:21 -04:00
gui/AboutDialog.cpp
gui/Application.cpp
gui/ChangeMasterKeyWidget.cpp
gui/Clipboard.cpp
gui/DatabaseOpenWidget.cpp
gui/DatabaseSettingsWidget.cpp
gui/DatabaseTabWidget.cpp
2010-08-24 16:26:52 -04:00
gui/DatabaseWidget.cpp
gui/DialogyWidget.cpp
gui/DragTabBar.cpp
2012-05-14 12:18:31 -04:00
gui/EditWidget.cpp
2012-05-15 07:02:05 -04:00
gui/EditWidgetIcons.cpp
2012-10-29 17:41:37 -04:00
gui/EditWidgetProperties.cpp
gui/FileDialog.cpp
gui/IconModels.cpp
gui/KeePass1OpenWidget.cpp
gui/LineEdit.cpp
2010-09-19 10:59:32 -04:00
gui/MainWindow.cpp
gui/MessageBox.cpp
gui/PasswordGeneratorWidget.cpp
gui/SettingsWidget.cpp
gui/SortFilterHideProxyModel.cpp
2012-10-12 06:12:00 -04:00
gui/UnlockDatabaseWidget.cpp
2012-05-27 14:06:03 -04:00
gui/WelcomeWidget.cpp
2012-07-16 11:39:20 -04:00
gui/entry/AutoTypeAssociationsModel.cpp
gui/entry/EditEntryWidget.cpp
gui/entry/EditEntryWidget_p.h
gui/entry/EntryAttachmentsModel.cpp
gui/entry/EntryAttributesModel.cpp
2012-05-15 14:12:05 -04:00
gui/entry/EntryHistoryModel.cpp
gui/entry/EntryModel.cpp
gui/entry/EntryView.cpp
gui/group/EditGroupWidget.cpp
gui/group/GroupModel.cpp
gui/group/GroupView.cpp
keys/CompositeKey.cpp
keys/CompositeKey_p.h
keys/FileKey.cpp
keys/Key.h
keys/PasswordKey.cpp
streams/HashedBlockStream.cpp
streams/LayeredStream.cpp
streams/qtiocompressor.cpp
streams/StoreDataStream.cpp
streams/SymmetricCipherStream.cpp
2010-08-07 09:10:44 -04:00
)
set(keepassx_SOURCES_MAINEXE
main.cpp
)
2010-11-21 17:06:30 -05:00
set(keepassx_MOC
autotype/AutoType.h
autotype/AutoTypeSelectDialog.h
autotype/AutoTypeSelectView.h
autotype/ShortcutWidget.h
autotype/WindowSelectComboBox.h
core/AutoTypeAssociations.h
core/Config.h
2010-11-21 17:06:30 -05:00
core/Database.h
core/Entry.h
core/EntryAttachments.h
core/EntryAttributes.h
2010-11-21 17:06:30 -05:00
core/Group.h
core/Metadata.h
core/qsavefile.h
2012-05-02 09:37:21 -04:00
gui/AboutDialog.h
gui/Application.h
gui/ChangeMasterKeyWidget.h
gui/Clipboard.h
gui/DatabaseOpenWidget.h
gui/DatabaseSettingsWidget.h
gui/DatabaseTabWidget.h
2010-11-21 17:06:30 -05:00
gui/DatabaseWidget.h
gui/DialogyWidget.h
gui/DragTabBar.h
2012-05-14 12:18:31 -04:00
gui/EditWidget.h
2012-05-15 07:02:05 -04:00
gui/EditWidgetIcons.h
2012-10-29 17:41:37 -04:00
gui/EditWidgetProperties.h
gui/IconModels.h
gui/KeePass1OpenWidget.h
gui/LineEdit.h
2010-11-21 17:06:30 -05:00
gui/MainWindow.h
gui/PasswordGeneratorWidget.h
gui/SettingsWidget.h
gui/SortFilterHideProxyModel.h
2012-10-12 06:12:00 -04:00
gui/UnlockDatabaseWidget.h
2012-05-27 14:06:03 -04:00
gui/WelcomeWidget.h
2012-07-16 11:39:20 -04:00
gui/entry/AutoTypeAssociationsModel.h
gui/entry/EditEntryWidget.h
gui/entry/EntryAttachmentsModel.h
gui/entry/EntryAttributesModel.h
2012-05-15 14:12:05 -04:00
gui/entry/EntryHistoryModel.h
gui/entry/EntryModel.h
gui/entry/EntryView.h
gui/group/EditGroupWidget.h
gui/group/GroupModel.h
gui/group/GroupView.h
keys/CompositeKey_p.h
2010-11-21 17:06:30 -05:00
streams/HashedBlockStream.h
streams/LayeredStream.h
streams/qtiocompressor.h
streams/StoreDataStream.h
2010-11-21 17:06:30 -05:00
streams/SymmetricCipherStream.h
)
2010-09-19 10:59:32 -04:00
set(keepassx_FORMS
2012-05-02 09:37:21 -04:00
gui/AboutDialog.ui
gui/ChangeMasterKeyWidget.ui
gui/DatabaseOpenWidget.ui
gui/DatabaseSettingsWidget.ui
2012-05-14 12:18:31 -04:00
gui/EditWidget.ui
gui/EditWidgetIcons.ui
gui/EditWidgetProperties.ui
2010-09-19 10:59:32 -04:00
gui/MainWindow.ui
gui/PasswordGeneratorWidget.ui
gui/SearchWidget.ui
gui/SettingsWidgetGeneral.ui
gui/SettingsWidgetSecurity.ui
2012-05-27 14:06:03 -04:00
gui/WelcomeWidget.ui
gui/entry/EditEntryWidgetAdvanced.ui
gui/entry/EditEntryWidgetAutoType.ui
2012-05-15 14:12:05 -04:00
gui/entry/EditEntryWidgetHistory.ui
gui/entry/EditEntryWidgetMain.ui
gui/group/EditGroupWidgetMain.ui
2010-09-19 10:59:32 -04:00
)
if(MINGW)
set(keepassx_SOURCES_MAINEXE
${keepassx_SOURCES_MAINEXE}
${CMAKE_SOURCE_DIR}/share/windows/icon.rc)
endif()
2010-09-19 10:59:32 -04:00
qt4_wrap_ui(keepassx_SOURCES ${keepassx_FORMS})
2010-11-21 17:06:30 -05:00
qt4_wrap_cpp(keepassx_SOURCES ${keepassx_MOC})
2010-09-19 10:59:32 -04:00
2012-05-21 17:37:29 -04:00
add_library(keepassx_core STATIC ${keepassx_SOURCES})
set_target_properties(keepassx_core PROPERTIES COMPILE_DEFINITIONS KEEPASSX_BUILDING_CORE)
2010-08-07 09:10:44 -04:00
add_executable(${PROGNAME} WIN32 MACOSX_BUNDLE ${keepassx_SOURCES_MAINEXE})
2012-05-21 17:37:29 -04:00
target_link_libraries(${PROGNAME}
keepassx_core
${QT_QTCORE_LIBRARY}
${QT_QTGUI_LIBRARY}
${GCRYPT_LIBRARIES}
${ZLIB_LIBRARIES})
if(UNIX AND NOT APPLE)
target_link_libraries(${PROGNAME} ${QT_QTDBUS_LIBRARY})
endif()
set_target_properties(${PROGNAME} PROPERTIES ENABLE_EXPORTS ON)
if(APPLE)
configure_file(${CMAKE_SOURCE_DIR}/share/macosx/Info.plist.cmake ${CMAKE_CURRENT_BINARY_DIR}/Info.plist)
set_target_properties(${PROGNAME} PROPERTIES
MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_BINARY_DIR}/Info.plist)
endif()
install(TARGETS ${PROGNAME}
2012-05-21 17:37:29 -04:00
BUNDLE DESTINATION . COMPONENT Runtime
RUNTIME DESTINATION ${BIN_INSTALL_DIR} COMPONENT Runtime)
add_subdirectory(autotype)
if(APPLE AND NOT (${CMAKE_VERSION} VERSION_LESS 2.8.8))
if(QT_MAC_USE_COCOA AND EXISTS "${QT_LIBRARY_DIR}/Resources/qt_menu.nib")
install(DIRECTORY "${QT_LIBRARY_DIR}/Resources/qt_menu.nib"
DESTINATION "${DATA_INSTALL_DIR}")
endif()
set(CPACK_GENERATOR "DragNDrop")
set(CPACK_DMG_FORMAT "UDBZ")
set(CPACK_DMG_VOLUME_NAME "${PROGNAME}")
set(CPACK_SYSTEM_NAME "OSX")
set(CPACK_STRIP_FILES ON)
set(CPACK_PACKAGE_FILE_NAME "${PROGNAME}-${KEEPASSX_VERSION_NUM}")
2012-10-22 14:40:03 -04:00
include(CPack)
include(DeployQt4)
install_qt4_executable(${PROGNAME}.app "qjpeg;qgif;qico;qtaccessiblewidgets")
endif()
2012-10-22 14:40:03 -04:00
if(MINGW AND NOT (${CMAKE_VERSION} VERSION_LESS 2.8.8))
2012-10-22 14:40:03 -04:00
set(CPACK_GENERATOR "ZIP")
set(CPACK_STRIP_FILES ON)
set(CPACK_PACKAGE_FILE_NAME "${PROGNAME}-${KEEPASSX_VERSION_NUM}")
include(CPack)
include(DeployQt4)
install_qt4_executable(${PROGNAME}.exe "qjpeg;qgif;qico;qtaccessiblewidgets")
endif()