From 256f58e7237d890d24eb642b7aff497c87fd9d82 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sun, 10 Apr 2022 13:48:28 -1000 Subject: [PATCH] build-system: remove obsolete warning Apparently Qt 6.3.0 already fixes this problem, so... never mind. Signed-off-by: Dirk Hohndel --- CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 65ad7e226..0c615647f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -585,9 +585,6 @@ elseif(CMAKE_SYSTEM_NAME STREQUAL "Darwin") endif() # this will fail is macdeployqt isn't in the PATH - that seemed to happen in the past, but not recently # also, on M1 macOS systems macdeployqt throws a ton of (apparently harmless) errors. Warn the unsuspecting developer - if(CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64") - install(CODE "execute_process(COMMAND echo the following macdeployqt command will spew out a ton of harmless otool output parsing errors)") - endif() install(CODE "execute_process(COMMAND macdeployqt ${APP_BUNDLE_DIR} -no-strip ${MACDEPLOY_ARGS})") # the next hack is here to delete the sqlite plugin that get's installed even though it isn't needed install(CODE "execute_process(COMMAND rm -rf ${CMAKE_BINARY_DIR}/${APP_BUNDLE_DIR}/Contents/PlugIns/sqldrivers)")