Page 1 of 1

[0.8.2 cmake] FindPackage(PythonLibs) should specify version

Posted: Sun Sep 22, 2013 12:16
by zweihndr
My system has both Python 2.7 and Python 3.3 installed.

CEGUI's CMakeLists contains:

Code: Select all

find_package(PythonInterp)
(finds 2.7)

Code: Select all

find_package(PythonLibs)
(finds 3.3)

It should be:

Code: Select all

find_package(PythonLibs 2)