summaryrefslogtreecommitdiffstats
path: root/Tests/UseSWIG
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2023-11-16 15:37:49 (GMT)
committerBrad King <brad.king@kitware.com>2023-11-17 14:58:21 (GMT)
commit2744f14db1e87f4b7f6eb6f30f7c84ea52ce4a7a (patch)
tree35ee84cee04924eb7112971ebff1e5b80d818b90 /Tests/UseSWIG
parentf2776ac063e45fea91e4d496a910a0a6d10ed064 (diff)
downloadCMake-2744f14db1e87f4b7f6eb6f30f7c84ea52ce4a7a.zip
CMake-2744f14db1e87f4b7f6eb6f30f7c84ea52ce4a7a.tar.gz
CMake-2744f14db1e87f4b7f6eb6f30f7c84ea52ce4a7a.tar.bz2
codespell: Fix typos
Diffstat (limited to 'Tests/UseSWIG')
-rw-r--r--Tests/UseSWIG/ModuleVersion2/CMakeLists.txt4
-rw-r--r--Tests/UseSWIG/MultipleModules/CMakeLists.txt2
-rw-r--r--Tests/UseSWIG/MultiplePython/CMakeLists.txt2
3 files changed, 4 insertions, 4 deletions
diff --git a/Tests/UseSWIG/ModuleVersion2/CMakeLists.txt b/Tests/UseSWIG/ModuleVersion2/CMakeLists.txt
index 317ed47..ded6b23 100644
--- a/Tests/UseSWIG/ModuleVersion2/CMakeLists.txt
+++ b/Tests/UseSWIG/ModuleVersion2/CMakeLists.txt
@@ -39,7 +39,7 @@ if(CMake_TEST_FindPython2)
COMMAND "${CMAKE_COMMAND}" -E env "PYTHONPATH=$<TARGET_PROPERTY:example1,SWIG_SUPPORT_FILES_DIRECTORY>${PS}$<TARGET_FILE_DIR:example1>"
"${Python2_EXECUTABLE}" "${CMAKE_CURRENT_SOURCE_DIR}/../runme.py")
- # re-use sample interface file for another plugin
+ # reuse sample interface file for another plugin
swig_add_library(example2
LANGUAGE python
SOURCES ../example.i ../example.cxx)
@@ -73,7 +73,7 @@ if(CMake_TEST_FindPython3)
"${Python3_EXECUTABLE}" "${CMAKE_CURRENT_SOURCE_DIR}/../runme.py")
- # re-use sample interface file for another plugin
+ # reuse sample interface file for another plugin
swig_add_library(example4
LANGUAGE python
SOURCES ../example.i ../example.cxx)
diff --git a/Tests/UseSWIG/MultipleModules/CMakeLists.txt b/Tests/UseSWIG/MultipleModules/CMakeLists.txt
index 4380080..4db28d7 100644
--- a/Tests/UseSWIG/MultipleModules/CMakeLists.txt
+++ b/Tests/UseSWIG/MultipleModules/CMakeLists.txt
@@ -38,7 +38,7 @@ set_target_properties (example1 PROPERTIES
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/Python")
target_link_libraries(example1 PRIVATE Python::Module)
-# re-use sample interface file for another plugin
+# reuse sample interface file for another plugin
set_property(SOURCE "../example.i" APPEND PROPERTY
GENERATED_INCLUDE_DIRECTORIES ${PERL_INCLUDE_PATH})
separate_arguments(c_flags UNIX_COMMAND "${PERL_EXTRA_C_FLAGS}")
diff --git a/Tests/UseSWIG/MultiplePython/CMakeLists.txt b/Tests/UseSWIG/MultiplePython/CMakeLists.txt
index cf6c80e..0cb6f19 100644
--- a/Tests/UseSWIG/MultiplePython/CMakeLists.txt
+++ b/Tests/UseSWIG/MultiplePython/CMakeLists.txt
@@ -36,7 +36,7 @@ set_target_properties (example1 PROPERTIES
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/Python2")
target_link_libraries(example1 PRIVATE Python2::Module)
-# re-use sample interface file for another plugin
+# reuse sample interface file for another plugin
swig_add_library(example2
LANGUAGE python
OUTPUT_DIR "${CMAKE_CURRENT_BINARY_DIR}/Python3"