cmake/Tests/FindPython/IronPython/CMakeLists.txt

32 lines
971 B
CMake
Raw Normal View History

2020-08-30 11:54:41 +02:00
cmake_minimum_required(VERSION 3.1)
2021-09-14 00:13:48 +02:00
project(TestIronPython LANGUAGES NONE)
2020-08-30 11:54:41 +02:00
set (Python_FIND_IMPLEMENTATIONS IronPython)
find_package(Python ${Python_REQUESTED_VERSION} COMPONENTS Interpreter Compiler)
if (NOT Python_FOUND)
2021-09-14 00:13:48 +02:00
message (FATAL_ERROR "Failed to find Python ${Python_REQUESTED_VERSION}")
2020-08-30 11:54:41 +02:00
endif()
if (NOT Python_Interpreter_FOUND)
2021-09-14 00:13:48 +02:00
message (FATAL_ERROR "Failed to find Python Interpreter")
2020-08-30 11:54:41 +02:00
endif()
if (NOT Python_INTERPRETER_ID STREQUAL "IronPython")
message (FATAL_ERROR "Erroneous interpreter ID (${Python_INTERPRETER_ID})")
endif()
if (NOT Python_Compiler_FOUND)
2021-09-14 00:13:48 +02:00
message (FATAL_ERROR "Failed to find Python Compiler")
2020-08-30 11:54:41 +02:00
endif()
if (NOT Python_COMPILER_ID STREQUAL "IronPython")
message (FATAL_ERROR "Erroneous compiler ID (${Python_COMPILER_ID})")
endif()
if(NOT TARGET Python::Interpreter)
message(SEND_ERROR "Python::Interpreter not found")
endif()
if(NOT TARGET Python::Compiler)
message(SEND_ERROR "Python::Interpreter not found")
endif()