aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Thomas Horsten2021-11-26 11:25:49 +0100
committerGravatar GitHub2021-11-26 10:25:49 +0000
commit7c5cca2fbe57b5a4976e7838c898eeed110049f0 (patch)
tree80d76386819c6caed6c209e6b1054813500ae30b /src
parentDocument the AVATAR negotiation protocol (#2511) (diff)
downloadKVIrc-7c5cca2fbe57b5a4976e7838c898eeed110049f0.tar.gz
KVIrc-7c5cca2fbe57b5a4976e7838c898eeed110049f0.tar.bz2
KVIrc-7c5cca2fbe57b5a4976e7838c898eeed110049f0.zip
Fixed up to build on MacOS 11.6 and restore SSL and Python support (#2518)
Diffstat (limited to 'src')
-rw-r--r--src/kvirc/CMakeLists.txt2
-rw-r--r--src/modules/zzz_afterlastmodule/CMakeLists.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/kvirc/CMakeLists.txt b/src/kvirc/CMakeLists.txt
index 4dd8698be..f565d6f62 100644
--- a/src/kvirc/CMakeLists.txt
+++ b/src/kvirc/CMakeLists.txt
@@ -345,6 +345,6 @@ Plugins = Plugins\")
\"${plugin_dest_dir}/*.dylib\")
set(BU_CHMOD_BUNDLE_ITEMS ON)
include(BundleUtilities)
- fixup_bundle(\"${CMAKE_INSTALL_PREFIX}\" \"\${QTPLUGINS}\" \"${QT_LIBRARY_DIR}\")
+ fixup_bundle(\"${CMAKE_INSTALL_PREFIX}\" \"\${QTPLUGINS}\" \"${QT_LIBRARY_DIR}\" IGNORE_ITEM Python)
" COMPONENT Runtime)
endif()
diff --git a/src/modules/zzz_afterlastmodule/CMakeLists.txt b/src/modules/zzz_afterlastmodule/CMakeLists.txt
index e209fe082..799da6e5e 100644
--- a/src/modules/zzz_afterlastmodule/CMakeLists.txt
+++ b/src/modules/zzz_afterlastmodule/CMakeLists.txt
@@ -8,6 +8,6 @@ if(APPLE)
file(GLOB_RECURSE KVIRC_INSTALLED_MODULES
\"${KVIRC_MOD_PATH}/*.so\")
include(BundleUtilities)
- fixup_bundle(\"${CMAKE_INSTALL_PREFIX}\" \"\${KVIRC_INSTALLED_MODULES}\" \"${QT_LIBRARY_DIR}\")
+ fixup_bundle(\"${CMAKE_INSTALL_PREFIX}\" \"\${KVIRC_INSTALLED_MODULES}\" \"${QT_LIBRARY_DIR}\" IGNORE_ITEM Python)
" COMPONENT Runtime)
endif()