mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Install the keepassx binary and database icons.
This commit is contained in:
parent
ccdeadfd2a
commit
752c720226
3 changed files with 31 additions and 0 deletions
|
@ -50,6 +50,17 @@ else( APPLE OR MINGW )
|
|||
set( PROGNAME keepassx )
|
||||
endif( APPLE OR MINGW )
|
||||
|
||||
if(MINGW)
|
||||
set(BIN_INSTALL_DIR "")
|
||||
set(DATA_INSTALL_DIR "share")
|
||||
elseif(APPLE)
|
||||
set(BIN_INSTALL_DIR "")
|
||||
set(DATA_INSTALL_DIR "Contents/Resources")
|
||||
else(MINGW)
|
||||
set(BIN_INSTALL_DIR "bin")
|
||||
set(DATA_INSTALL_DIR "share/keepassx")
|
||||
endif( MINGW )
|
||||
|
||||
if( WITH_TESTS )
|
||||
enable_testing()
|
||||
endif( WITH_TESTS )
|
||||
|
@ -82,6 +93,7 @@ endif(NOT ZLIB_SUPPORTS_GZIP)
|
|||
include_directories(${QT_INCLUDE_DIR} ${GCRYPT_INCLUDE_DIR} ${ZLIB_INCLUDE_DIR})
|
||||
|
||||
add_subdirectory(src)
|
||||
add_subdirectory(share)
|
||||
add_subdirectory(utils)
|
||||
if( WITH_TESTS )
|
||||
add_subdirectory(tests)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue