From: Matthias Maier Date: Thu, 4 Aug 2016 12:59:21 +0000 (-0500) Subject: CMake: Bugfix: Do not annotate the python module with VERSION/SOVERSION X-Git-Tag: v8.5.0-rc1~805^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=507ec62241419a8656ddf46c4cc03e1b9e7419ca;p=dealii.git 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 --- 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}}"