diff --git a/cmake/BundledBoost.cmake b/cmake/BundledBoost.cmake index edf47675a7..44382879e0 100644 --- a/cmake/BundledBoost.cmake +++ b/cmake/BundledBoost.cmake @@ -57,7 +57,6 @@ function(setup_bundled_boost_with_python) include_directories(SYSTEM ${Boost_INCLUDE_DIRS}) - set(PYTHON_LIBRARIES ${PYTHON_LIBRARIES} PARENT_SCOPE) set(Boost_LIBRARIES ${Boost_LIBRARIES} PARENT_SCOPE) add_subdirectory(pyhelpers) diff --git a/generator/mwm_diff/pymwm_diff/CMakeLists.txt b/generator/mwm_diff/pymwm_diff/CMakeLists.txt index 081e0ceada..419d90eedf 100644 --- a/generator/mwm_diff/pymwm_diff/CMakeLists.txt +++ b/generator/mwm_diff/pymwm_diff/CMakeLists.txt @@ -18,7 +18,6 @@ omim_link_libraries( coding base stats_client - ${PYTHON_LIBRARIES} ${Boost_LIBRARIES} ${LIBZ} ) diff --git a/generator/pygen/CMakeLists.txt b/generator/pygen/CMakeLists.txt index d37e59a629..5d94ce4c56 100644 --- a/generator/pygen/CMakeLists.txt +++ b/generator/pygen/CMakeLists.txt @@ -44,7 +44,6 @@ omim_link_libraries( sqlite3 ${CMAKE_DL_LIBS} ${LIBZ} - ${PYTHON_LIBRARIES} ${Boost_LIBRARIES} ) diff --git a/kml/pykmlib/CMakeLists.txt b/kml/pykmlib/CMakeLists.txt index 573c9b79e0..47da2a952d 100644 --- a/kml/pykmlib/CMakeLists.txt +++ b/kml/pykmlib/CMakeLists.txt @@ -11,7 +11,6 @@ omim_add_library(${PROJECT_NAME} MODULE ${SRC}) omim_link_libraries( ${PROJECT_NAME} - ${PYTHON_LIBRARIES} ${Boost_LIBRARIES} kml indexer diff --git a/local_ads/pylocal_ads/CMakeLists.txt b/local_ads/pylocal_ads/CMakeLists.txt index 53dc2b4a70..46478a4c40 100644 --- a/local_ads/pylocal_ads/CMakeLists.txt +++ b/local_ads/pylocal_ads/CMakeLists.txt @@ -11,7 +11,6 @@ omim_add_library(${PROJECT_NAME} MODULE ${SRC}) omim_link_libraries( ${PROJECT_NAME} - ${PYTHON_LIBRARIES} ${Boost_LIBRARIES} local_ads base diff --git a/pyhelpers/setup.py b/pyhelpers/setup.py index 99fe16ccfa..548d102651 100644 --- a/pyhelpers/setup.py +++ b/pyhelpers/setup.py @@ -138,25 +138,6 @@ BOOST_LIBRARYDIR = os.path.join(BOOST_ROOT, 'stage', 'lib') ORIGINAL_CWD = os.getcwd() -def python_static_libdir(): - return get_config_var('LIBPL') - - -def python_ld_library(): - LDLIBRARY = get_config_var('LDLIBRARY') - PYTHONFRAMEWORKPREFIX = get_config_var('PYTHONFRAMEWORKPREFIX') - LIBDIR = get_config_var('LIBDIR') - LIBPL = get_config_var('LIBPL') - candidates = [ - os.path.join(PYTHONFRAMEWORKPREFIX, LDLIBRARY), - os.path.join(LIBDIR, LDLIBRARY), - os.path.join(LIBPL, LDLIBRARY), - ] - for candidate in candidates: - if os.path.exists(candidate): - return candidate - - @contextmanager def chdir(target_dir): saved_cwd = os.getcwd() @@ -310,11 +291,10 @@ class BuildBoostPythonCommand(Command, object): mkpath(self.omim_builddir) with open(self.get_boost_config_path(), 'w') as f: f.write( - 'using python : {} : {} : {} : {} ;\n'.format( + 'using python : {} : {} : {} ;\n'.format( get_python_version(), sys.executable, get_python_inc(), - python_static_libdir(), ) ) @@ -404,7 +384,6 @@ class BuildOmimBindingCommand(build_ext, object): '-DPYTHON_VERSION={}'.format(get_python_version()), '-DPYTHON_EXECUTABLE={}'.format(sys.executable), '-DPYTHON_INCLUDE_DIR={}'.format(get_python_inc()), - '-DPYTHON_LIBRARY={}'.format(python_ld_library()), OMIM_ROOT, ] ) diff --git a/search/pysearch/CMakeLists.txt b/search/pysearch/CMakeLists.txt index 58ac4d3267..82ce67fa77 100644 --- a/search/pysearch/CMakeLists.txt +++ b/search/pysearch/CMakeLists.txt @@ -32,7 +32,6 @@ omim_link_libraries( pugixml stats_client succinct - ${PYTHON_LIBRARIES} ${Boost_LIBRARIES} ${LIBZ} ) diff --git a/search/pysearch/README.txt b/search/pysearch/README.txt index f2f6fda077..6dc6270c88 100644 --- a/search/pysearch/README.txt +++ b/search/pysearch/README.txt @@ -27,7 +27,6 @@ This document describes how to use this module. -DPYBINDINGS=ON\ -DPYTHON_VERSION=3.7\ -DPYBINDINGS_VERSION=3.7\ - -DPYTHON_LIBRARIES=\ -DPYTHON_INCLUDE_DIRS=\ -DCMAKE_PREFIX_PATH= diff --git a/tracking/pytracking/CMakeLists.txt b/tracking/pytracking/CMakeLists.txt index 9e0f813f93..7a2e4adf14 100644 --- a/tracking/pytracking/CMakeLists.txt +++ b/tracking/pytracking/CMakeLists.txt @@ -9,5 +9,5 @@ include_directories(${CMAKE_BINARY_DIR}) omim_add_library(${PROJECT_NAME} MODULE ${SRC}) -omim_link_libraries(${PROJECT_NAME} ${PYTHON_LIBRARIES} ${Boost_LIBRARIES} tracking coding geometry base) +omim_link_libraries(${PROJECT_NAME} ${Boost_LIBRARIES} tracking coding geometry base) set_target_properties(${PROJECT_NAME} PROPERTIES PREFIX "") diff --git a/traffic/pytraffic/CMakeLists.txt b/traffic/pytraffic/CMakeLists.txt index 4682049094..362b7d3c53 100644 --- a/traffic/pytraffic/CMakeLists.txt +++ b/traffic/pytraffic/CMakeLists.txt @@ -43,7 +43,6 @@ omim_link_libraries( opening_hours succinct icu - ${PYTHON_LIBRARIES} ${Boost_LIBRARIES} ${LIBZ} )