Trying to force the use of python 2

This commit is contained in:
Strahinja Val Markovic 2013-02-02 12:11:37 -08:00
parent 77d631d979
commit d4f0d3c314
2 changed files with 3 additions and 1 deletions

View File

@ -31,7 +31,8 @@ cmake_minimum_required( VERSION 2.8 )
project( BoostParts )
find_package( PythonLibs REQUIRED )
set( Python_ADDITIONAL_VERSIONS 2.7 2.6 2.5 )
find_package( PythonLibs 2 REQUIRED )
file( GLOB_RECURSE SOURCES *.cpp )

View File

@ -19,6 +19,7 @@ cmake_minimum_required( VERSION 2.8 )
project( ycm_core )
set( Python_ADDITIONAL_VERSIONS 2.7 2.6 2.5 )
find_package( PythonLibs 2 REQUIRED )
option( USE_CLANG_COMPLETER "Use Clang semantic completer for C/C++/ObjC" OFF )