mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Support creating Mac OS X bundles that embed all dependencies.
This commit is contained in:
parent
ca7c59d313
commit
fa79da37b6
6 changed files with 98 additions and 0 deletions
|
@ -25,6 +25,7 @@ option(WITH_LTO "Enable Link Time Optimization (LTO)" OFF)
|
|||
option(WITH_PIE "Build as Position-independent executable (PIE)" OFF)
|
||||
|
||||
set( KEEPASSX_VERSION "2.0 alpha 1" )
|
||||
set( KEEPASSX_VERSION_NUM "1.9.80" )
|
||||
|
||||
if("${CMAKE_C_COMPILER}" MATCHES "clang$" OR "${CMAKE_C_COMPILER_ID}" STREQUAL "Clang")
|
||||
set(CMAKE_COMPILER_IS_CLANG 1)
|
||||
|
@ -109,6 +110,10 @@ else( APPLE OR MINGW )
|
|||
set( PROGNAME keepassx )
|
||||
endif( APPLE OR MINGW )
|
||||
|
||||
if(APPLE AND "${CMAKE_INSTALL_PREFIX}" STREQUAL "/usr/local")
|
||||
set(CMAKE_INSTALL_PREFIX "/Applications")
|
||||
endif()
|
||||
|
||||
if(MINGW)
|
||||
set(BIN_INSTALL_DIR "")
|
||||
set(DATA_INSTALL_DIR "share")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue