Skip to content

Commit

Permalink
src/CMakeLists.txt: Fix Python3 hard requirement
Browse files Browse the repository at this point in the history
Signed-off-by: Willem Jan Withagen <wjw@digiware.nl>
  • Loading branch information
wjwithagen committed Sep 4, 2016
1 parent e3f2567 commit 09510bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Expand Up @@ -200,8 +200,8 @@ endif()
# Python stuff
find_package(PythonInterp 2 REQUIRED)
find_package(PythonLibs 2 REQUIRED)
find_package(Python3Interp 3 REQUIRED)
find_package(Python3Libs 3 REQUIRED)
find_package(Python3Interp 3 QUIET)
find_package(Python3Libs 3 QUIET)

if(HAVE_XIO)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -I${XIO_INCLUDE_DIR}")
Expand Down

0 comments on commit 09510bf

Please sign in to comment.