# Copyright 2016, Raffi Enficiaud.
# A test cmake configuration that fails by printing an error message: in this
# case the python executable.

cmake_minimum_required(VERSION 3.21)
set_property(GLOBAL PROPERTY USE_FOLDERS ON)

enable_testing()

project(TestCMakePIPExt)

find_package(Python3 COMPONENTS Interpreter REQUIRED)
message(FATAL_ERROR "python found here ${Python3_EXECUTABLE}")
