[0.8.2 cmake] FindPackage(PythonLibs) should specify version
Posted: Sun Sep 22, 2013 12:16
My system has both Python 2.7 and Python 3.3 installed.
CEGUI's CMakeLists contains:
(finds 2.7)
(finds 3.3)
It should be:
CEGUI's CMakeLists contains:
Code: Select all
find_package(PythonInterp)
Code: Select all
find_package(PythonLibs)
It should be:
Code: Select all
find_package(PythonLibs 2)