diff options
author | Brad King <brad.king@kitware.com> | 2018-03-21 14:01:29 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2018-03-21 14:01:52 (GMT) |
commit | a13cfa246fee1ba99eeecda8b8e8d158d29841df (patch) | |
tree | 32fe0446e2b5e5993c0612964929ec8aee4d6538 /Tests/FindPython/Python3 | |
parent | 3946cbc505a066677efe1faea3cc2d051b1132bc (diff) | |
parent | 50b5e9ed1316f82976a45c5fb2b00d0d3a3e4438 (diff) | |
download | CMake-a13cfa246fee1ba99eeecda8b8e8d158d29841df.zip CMake-a13cfa246fee1ba99eeecda8b8e8d158d29841df.tar.gz CMake-a13cfa246fee1ba99eeecda8b8e8d158d29841df.tar.bz2 |
Merge topic 'FindPython-new-implementation'
50b5e9ed13 CMake build: Use new FindPython module
352baee207 FindPython*: New implementation for Python stuff
Acked-by: Kitware Robot <kwrobot@kitware.com>
Reviewed-by: Ben Boeckel <ben.boeckel@kitware.com>
Acked-by: Alex Turbov <i.zaufi@gmail.com>
Merge-request: !1819
Diffstat (limited to 'Tests/FindPython/Python3')
-rw-r--r-- | Tests/FindPython/Python3/CMakeLists.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Tests/FindPython/Python3/CMakeLists.txt b/Tests/FindPython/Python3/CMakeLists.txt new file mode 100644 index 0000000..cb86eae --- /dev/null +++ b/Tests/FindPython/Python3/CMakeLists.txt @@ -0,0 +1,22 @@ +cmake_minimum_required(VERSION 3.1) + +project(TestPython3 C) + +include(CTest) + +find_package(Python3 2 QUIET) +if (Python3_FOUND) + message (FATAL_ERROR "Wrong python version found: ${Python3_VERSION}") +endif() + +find_package(Python3 REQUIRED COMPONENTS Interpreter Development) +if (NOT Python3_FOUND) + message (FATAL_ERROR "Fail to found Python 3") +endif() + +Python3_add_library (spam3 MODULE ../spam.c) +target_compile_definitions (spam3 PRIVATE PYTHON3) + +add_test (NAME python3_spam3 + COMMAND "${CMAKE_COMMAND}" -E env "PYTHONPATH=$<TARGET_FILE_DIR:spam3>" + "${Python3_EXECUTABLE}" -c "import spam3; spam3.system(\"cd\")") |