Skip to content

Commit

Permalink
[setup] make meshroom_photogrammetry an Executable
Browse files Browse the repository at this point in the history
provides a command line tool to launch the photogrammetry pipeline
yann-lty committed Aug 3, 2018
1 parent 3438900 commit ab00cca
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -15,6 +15,10 @@
targetName="Meshroom",
)

meshroomPhotog = Executable(
"bin/meshroom_photogrammetry"
)

# Customize executable for each target platform
if sys.platform.startswith("win32"):
# meshroomExe.base = "Win32GUI" # for no-console version
@@ -38,5 +42,5 @@
],
version=meshroom.__version__,
options={"build_exe": build_exe_options},
executables=[meshroomExe],
executables=[meshroomExe, meshroomPhotog],
)

0 comments on commit ab00cca

Please sign in to comment.