From 5537ccd814700edb529e5e79137601bb2987c892 Mon Sep 17 00:00:00 2001 From: Marc Chevrier Date: Thu, 1 Oct 2020 17:47:37 +0200 Subject: FindPython: Tests optimizations * Use 'project(... LANGUAGES NONE)' when possible * enhance error messages wording --- Tests/FindPython/Python3Module/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Tests/FindPython/Python3Module') diff --git a/Tests/FindPython/Python3Module/CMakeLists.txt b/Tests/FindPython/Python3Module/CMakeLists.txt index 676f4c89d3..5945962b91 100644 --- a/Tests/FindPython/Python3Module/CMakeLists.txt +++ b/Tests/FindPython/Python3Module/CMakeLists.txt @@ -1,12 +1,12 @@ cmake_minimum_required(VERSION 3.1) -project(TestPython3Module C) +project(TestPython3Module LANGUAGES C) include(CTest) find_package(Python3 REQUIRED COMPONENTS Interpreter Development.Module) if (NOT Python3_FOUND) - message (FATAL_ERROR "Fail to found Python 3") + message (FATAL_ERROR "Failed to find Python 3") endif() if (Python3_Development_FOUND) message (FATAL_ERROR "Python 3, COMPONENT 'Development' unexpectedly found") -- cgit v1.2.1