diff options
author | Marc Chevrier <marc.chevrier@sap.com> | 2018-03-27 08:17:35 (GMT) |
---|---|---|
committer | Marc Chevrier <marc.chevrier@sap.com> | 2018-04-02 14:24:13 (GMT) |
commit | 438429d6fe04164b7ed70bda872e291d0df1a9e3 (patch) | |
tree | 048a336020ece4a135fa0afea6686efeb1e6b6bd /Tests/UseSWIG/BasicPython | |
parent | e42fcb117fa1a8d063023bb39db96da93159ee40 (diff) | |
download | CMake-438429d6fe04164b7ed70bda872e291d0df1a9e3.zip CMake-438429d6fe04164b7ed70bda872e291d0df1a9e3.tar.gz CMake-438429d6fe04164b7ed70bda872e291d0df1a9e3.tar.bz2 |
UseSWIG: Rework tests
Diffstat (limited to 'Tests/UseSWIG/BasicPython')
-rw-r--r-- | Tests/UseSWIG/BasicPython/CMakeLists.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Tests/UseSWIG/BasicPython/CMakeLists.txt b/Tests/UseSWIG/BasicPython/CMakeLists.txt new file mode 100644 index 0000000..1ca4e25 --- /dev/null +++ b/Tests/UseSWIG/BasicPython/CMakeLists.txt @@ -0,0 +1,13 @@ +cmake_minimum_required(VERSION 3.1) + +project(TestBasicPython CXX) + +include(CTest) + +set(language "python") + +include (../BasicConfiguration.cmake) + +add_test (NAME BasicPython + COMMAND "${CMAKE_COMMAND}" -E env "PYTHONPATH=$<TARGET_FILE_DIR:example>" + "${Python_EXECUTABLE}" "${CMAKE_CURRENT_SOURCE_DIR}/../runme.py") |