mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
FindPython: migrate tests to RunCMake framework
This commit is contained in:
9
Tests/RunCMake/FindPython/FindPythonScript.cmake
Normal file
9
Tests/RunCMake/FindPython/FindPythonScript.cmake
Normal file
@@ -0,0 +1,9 @@
|
||||
cmake_minimum_required(VERSION 3.15)
|
||||
if (PYTHON_MUST_NOT_BE_FOUND)
|
||||
find_package(${PYTHON_PACKAGE_NAME} QUIET)
|
||||
if (${PYTHON_PACKAGE_NAME}_FOUND)
|
||||
message(FATAL_ERROR "${PYTHON_PACKAGE_NAME}: unexpectedly founded.")
|
||||
endif()
|
||||
else()
|
||||
find_package(${PYTHON_PACKAGE_NAME} REQUIRED QUIET)
|
||||
endif()
|
||||
Reference in New Issue
Block a user