Skip to content
Snippets Groups Projects

Fix missing threads lib and incorrect Boost-Python detection

Merged Tammo Jan Dijkema requested to merge python-install-problems into master
2 files
+ 6
7
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 2
5
# Try to find Boost-Python.
# If found, build this package. Otherwise give a warning.
FIND_PATH(BOOST_PYTHON_FOUND "boost/python.hpp")
if(BOOST_PYTHON_FOUND)
# If Boost-Python found, build this package. Otherwise give a warning.
if(${Boost_PYTHON_FOUND})
include(PythonInstall)
Loading