[setup] make meshroom_photogrammetry an Executable

provides a command line tool to launch the photogrammetry pipeline
This commit is contained in:
Yann Lanthony 2018-08-01 23:44:25 +02:00
parent 3438900b2b
commit ab00cca98f

View file

@ -15,6 +15,10 @@ meshroomExe = Executable(
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 @@ setup(
],
version=meshroom.__version__,
options={"build_exe": build_exe_options},
executables=[meshroomExe],
executables=[meshroomExe, meshroomPhotog],
)