summaryrefslogtreecommitdiffstats
path: root/Tests/FindPython/Python3
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-03-06 14:17:39 (GMT)
committerKitware Robot <kwrobot@kitware.com>2020-03-06 14:18:24 (GMT)
commit995b122471943461ca8bf6e89e894464fef5f05c (patch)
tree4416dd5ddc47cec5dc66e3f311cb7a2a5625694e /Tests/FindPython/Python3
parent74359da1e9965a11c00ada0c1822e59902cc8bd8 (diff)
parente5b4c742385b7bcddb9b667cad37795b0aef3f32 (diff)
downloadCMake-995b122471943461ca8bf6e89e894464fef5f05c.zip
CMake-995b122471943461ca8bf6e89e894464fef5f05c.tar.gz
CMake-995b122471943461ca8bf6e89e894464fef5f05c.tar.bz2
Merge topic 'FindPython-artifacts-scope'
e5b4c74238 FindPython: Add possibility to control scope of artifacts. Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4426
Diffstat (limited to 'Tests/FindPython/Python3')
-rw-r--r--Tests/FindPython/Python3/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/FindPython/Python3/CMakeLists.txt b/Tests/FindPython/Python3/CMakeLists.txt
index 6691a48..34ebd2c 100644
--- a/Tests/FindPython/Python3/CMakeLists.txt
+++ b/Tests/FindPython/Python3/CMakeLists.txt
@@ -15,14 +15,14 @@ if (NOT Python3_FOUND)
endif()
if(NOT TARGET Python3::Interpreter)
- message(SEND_ERROR "Python2::Interpreter not found")
+ message(SEND_ERROR "Python3::Interpreter not found")
endif()
if(NOT TARGET Python3::Python)
- message(SEND_ERROR "Python2::Python not found")
+ message(SEND_ERROR "Python3::Python not found")
endif()
if(NOT TARGET Python3::Module)
- message(SEND_ERROR "Python2::Module not found")
+ message(SEND_ERROR "Python3::Module not found")
endif()
Python3_add_library (spam3 MODULE ../spam.c)