obsolete CMAKE_BUILD_TOOL => CMAKE_MAKE_PROGRAM (#97)

CMAKE_BUILD_TOOL has been [replaced](https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TOOL.html) by CMAKE_MAKE_PROGRAM
This commit is contained in:
Michael Hirsch 2020-11-17 08:53:10 -05:00 committed by GitHub
parent d14418e92a
commit 0db2d6c212
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -603,7 +603,7 @@ if (MSVC)
endif ()
set (MAKE_SYSTEM)
if (CMAKE_BUILD_TOOL MATCHES "make")
if (CMAKE_MAKE_PROGRAM MATCHES "make")
set (MAKE_SYSTEM 1)
endif ()