فهرست منبع

cmake: Set IDFTOOL variable using the correct PYTHON interpreter variable

Angus Gratton 4 سال پیش
والد
کامیت
c52417eaba
1فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 3 3
      tools/cmake/project.cmake

+ 3 - 3
tools/cmake/project.cmake

@@ -6,9 +6,6 @@ cmake_minimum_required(VERSION 3.5)
 # call.
 include(${CMAKE_CURRENT_LIST_DIR}/idf.cmake)
 
-# legacy variable for compatibility
-set(IDFTOOL ${PYTHON} "${IDF_PATH}/tools/idf.py")
-
 # setting PYTHON variable here for compatibility only, new code should use
 # idf_build_get_property(variable PYTHON)
 idf_build_get_property(PYTHON PYTHON)
@@ -16,6 +13,9 @@ if(NOT PYTHON)
     message(FATAL_ERROR "Internal error, PYTHON build property not set correctly.")
 endif()
 
+# legacy variable for compatibility
+set(IDFTOOL ${PYTHON} "${IDF_PATH}/tools/idf.py")
+
 # On processing, checking Python required modules can be turned off if it was
 # already checked externally.
 if(PYTHON_DEPS_CHECKED)