diff options
| author | Kyle Edwards <kyle.edwards@kitware.com> | 2020-04-07 18:54:54 (GMT) |
|---|---|---|
| committer | Kyle Edwards <kyle.edwards@kitware.com> | 2020-04-07 18:54:54 (GMT) |
| commit | d54f0aa9b71dfcc04f077e5b19c6122cb4b98d83 (patch) | |
| tree | 987fbabfbdda89ed4aaea7fa9c99ee99f4e27084 /Tests/FindPython/Python3 | |
| parent | 2f949be4b3a4e9da43a1c445300084a2d63837e2 (diff) | |
| parent | b8b804e2ed8dca3c6d116a6e8a1cb66cbd6ad241 (diff) | |
| download | CMake-d54f0aa9b71dfcc04f077e5b19c6122cb4b98d83.zip CMake-d54f0aa9b71dfcc04f077e5b19c6122cb4b98d83.tar.gz CMake-d54f0aa9b71dfcc04f077e5b19c6122cb4b98d83.tar.bz2 | |
Merge branch 'master' into ninja-order-depends
Diffstat (limited to 'Tests/FindPython/Python3')
| -rw-r--r-- | Tests/FindPython/Python3/CMakeLists.txt | 6 |
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) |
