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',