CMake: Fix depot_tools path for Windows

This commit is contained in:
Axel Isouard 2017-01-28 16:46:39 +01:00
parent a1d1f3bf15
commit 867ae4f1f4
No known key found for this signature in database
GPG key ID: 4E64BB3EAAF31C29

View file

@ -10,7 +10,7 @@ set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /MTd")
find_package(Git REQUIRED)
if (WIN32)
set(PYTHON_EXECUTABLE ${CMAKE_SOURCE_DIR}/Dependencies/depot_tools/python.bat)
set(PYTHON_EXECUTABLE ${CMAKE_SOURCE_DIR}/depot_tools/python.bat)
else (WIN32)
find_package(PythonInterp REQUIRED)
endif (WIN32)