mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
e353fe89db
+ disabled testcli flaky test
54 lines
2.2 KiB
Diff
54 lines
2.2 KiB
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 74b1a7ff..0a713a32 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -307,6 +307,7 @@ if(MINGW)
|
|
set(PLUGIN_INSTALL_DIR ".")
|
|
set(DATA_INSTALL_DIR "share")
|
|
elseif(APPLE AND WITH_APP_BUNDLE)
|
|
+ set(CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}/Applications")
|
|
set(BUNDLE_INSTALL_DIR "${PROGNAME}.app/Contents")
|
|
set(CMAKE_INSTALL_MANDIR "${PROGNAME}.app/Contents/Resources/man")
|
|
set(CLI_INSTALL_DIR "${PROGNAME}.app/Contents/MacOS")
|
|
@@ -369,12 +370,6 @@ set(CMAKE_AUTORCC ON)
|
|
|
|
if(APPLE)
|
|
set(CMAKE_MACOSX_RPATH TRUE)
|
|
- find_program(MACDEPLOYQT_EXE macdeployqt HINTS ${Qt5_PREFIX}/bin ENV PATH)
|
|
- if(NOT MACDEPLOYQT_EXE)
|
|
- message(FATAL_ERROR "macdeployqt is required to build on macOS")
|
|
- else()
|
|
- message(STATUS "Using macdeployqt: ${MACDEPLOYQT_EXE}")
|
|
- endif()
|
|
elseif(MINGW)
|
|
find_program(WINDEPLOYQT_EXE windeployqt HINTS ${Qt5_PREFIX}/bin ENV PATH)
|
|
if(NOT WINDEPLOYQT_EXE)
|
|
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
|
|
index f142f368..0742512d 100644
|
|
--- a/src/CMakeLists.txt
|
|
+++ b/src/CMakeLists.txt
|
|
@@ -351,11 +351,6 @@ if(APPLE AND WITH_APP_BUNDLE)
|
|
set(CPACK_PACKAGE_FILE_NAME "${PROGNAME}-${KEEPASSXC_VERSION}")
|
|
include(CPack)
|
|
|
|
- add_custom_command(TARGET ${PROGNAME}
|
|
- POST_BUILD
|
|
- COMMAND ${MACDEPLOYQT_EXE} ${PROGNAME}.app
|
|
- WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/src
|
|
- COMMENT "Deploying app bundle")
|
|
endif()
|
|
|
|
install(TARGETS ${PROGNAME}
|
|
diff --git a/src/autotype/mac/CMakeLists.txt b/src/autotype/mac/CMakeLists.txt
|
|
index 7427450a..a0a58d71 100644
|
|
--- a/src/autotype/mac/CMakeLists.txt
|
|
+++ b/src/autotype/mac/CMakeLists.txt
|
|
@@ -8,7 +8,6 @@ if(WITH_APP_BUNDLE)
|
|
add_custom_command(TARGET keepassx-autotype-cocoa
|
|
POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/libkeepassx-autotype-cocoa.so ${PLUGIN_INSTALL_DIR}
|
|
- COMMAND ${MACDEPLOYQT_EXE} ${PROGNAME}.app -executable=${PLUGIN_INSTALL_DIR}/libkeepassx-autotype-cocoa.so -no-plugins
|
|
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/src
|
|
COMMENT "Deploying autotype plugin")
|
|
else()
|