Skip to content
Snippets Groups Projects
Commit 7b36599f authored by Matthias Markl's avatar Matthias Markl Committed by Michael Kuron
Browse files

python 3.7 bugfix in CMakeLists.txt for MSVC

markl
parent a399eded
No related tags found
No related merge requests found
...@@ -645,7 +645,8 @@ else() ...@@ -645,7 +645,8 @@ else()
endif() endif()
if ( WALBERLA_BUILD_WITH_PYTHON AND WALBERLA_CXX_COMPILER_IS_MSVC ) if ( WALBERLA_BUILD_WITH_PYTHON AND WALBERLA_CXX_COMPILER_IS_MSVC )
list( APPEND waLBerla_REQUIRED_BOOST_COMPONENTS python36 ) get_filename_component(PYTHON_REQUIRED_LIB ${PYTHON_LIBRARY} NAME_WE)
list( APPEND waLBerla_REQUIRED_BOOST_COMPONENTS ${PYTHON_REQUIRED_LIB} )
endif() endif()
# This variable is necessary, if the CMAKE version used is not aware of a more recent boost version (keep this up to date!) # This variable is necessary, if the CMAKE version used is not aware of a more recent boost version (keep this up to date!)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment