Support creating Mac OS X bundles that embed all dependencies.

This commit is contained in:
Felix Geyer 2012-05-21 20:24:06 +02:00
parent ca7c59d313
commit fa79da37b6
6 changed files with 98 additions and 0 deletions

View file

@ -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")