From b9ff8dcf8a227e3301bbedccb4df50c84f9b580c Mon Sep 17 00:00:00 2001 From: Simon Rit Date: Sat, 9 Oct 2021 14:18:16 +0200 Subject: [PATCH] ENH: install python application for Varian OBI geometry --- applications/rtkvarianobigeometry/CMakeLists.txt | 4 ++++ setup.py | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/applications/rtkvarianobigeometry/CMakeLists.txt b/applications/rtkvarianobigeometry/CMakeLists.txt index 2d47ffa12..c9cd54c33 100644 --- a/applications/rtkvarianobigeometry/CMakeLists.txt +++ b/applications/rtkvarianobigeometry/CMakeLists.txt @@ -10,5 +10,9 @@ if(NOT RTK_INSTALL_NO_EXECUTABLES) LIBRARY DESTINATION ${RTK_INSTALL_LIB_DIR} COMPONENT RuntimeLibraries ARCHIVE DESTINATION ${RTK_INSTALL_ARCHIVE_DIR} COMPONENT Development) endforeach() + + # Install Python application + install(FILES rtkvarianobigeometry.py + DESTINATION ${RTK_INSTALL_LIB_DIR} COMPONENT PythonWheelRuntimeLibraries) endif() diff --git a/setup.py b/setup.py index dfc502623..8eabf5a80 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,8 @@ "Operating System :: MacOS" ], scripts=[ - "lib/rtksimulatedgeometry.py" + "lib/rtksimulatedgeometry.py", + "lib/rtkvarianobigeometry.py" ], license='Apache', keywords='RTK Reconstruction Toolkit',