mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-10 07:36:52 +02:00
[setup] make meshroom_photogrammetry an Executable
provides a command line tool to launch the photogrammetry pipeline
This commit is contained in:
parent
3438900b2b
commit
ab00cca98f
1 changed files with 5 additions and 1 deletions
6
setup.py
6
setup.py
|
@ -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],
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue