UFC

Comment 1 for bug 1155621

Revision history for this message
Nico Schlömer (nschloe) wrote :

Also, if UFC_ENABLE_PYTHON, one requires PythonLibs. You may want to replace

# Find Python library corresponding to Python interpreter
find_package(PythonLibs ${PYTHON_VERSION_STRING} EXACT QUIET)

by

# Find Python library corresponding to Python interpreter
if (UFC_ENABLE_PYTHON)
  find_package(PythonLibs ${PYTHON_VERSION_STRING} EXACT QUIET REQUIRED)
else()
  find_package(PythonLibs ${PYTHON_VERSION_STRING} EXACT QUIET)
endif()