From 507ec62241419a8656ddf46c4cc03e1b9e7419ca Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Thu, 4 Aug 2016 07:59:21 -0500 Subject: [PATCH] CMake: Bugfix: Do not annotate the python module with VERSION/SOVERSION This fixes a regression on Mac where Python modules are a dynamically loaded module (".so") instead of a shared library (".dylib"). Closes #2915 --- contrib/python-bindings/source/CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/contrib/python-bindings/source/CMakeLists.txt b/contrib/python-bindings/source/CMakeLists.txt index 6ec21d3b6d..5ca99eb671 100644 --- a/contrib/python-bindings/source/CMakeLists.txt +++ b/contrib/python-bindings/source/CMakeLists.txt @@ -78,8 +78,6 @@ FOREACH(_build ${DEAL_II_BUILD_TYPES}) SET_TARGET_PROPERTIES(PyDealII_${_build_lowercase} PROPERTIES OUTPUT_NAME "${PYTHON_BINDINGS_${_build}_NAME}" - VERSION "${DEAL_II_PACKAGE_VERSION}" - SOVERSION "${DEAL_II_PACKAGE_VERSION}" LINK_FLAGS "${DEAL_II_LINKER_FLAGS} ${DEAL_II_LINKER_FLAGS_${_build}}" LINKER_LANGUAGE "CXX" COMPILE_DEFINITIONS "${DEAL_II_DEFINITIONS};${DEAL_II_DEFINITIONS_${_build}}" -- 2.39.5