mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-18 19:46:26 +02:00
[bin] use sys.exit + build meshroom_compute executable
* cx_Freeze removes builtin 'exit' function, use sys.exit in executables instead * build: generate an executable for "meshroom_compute"
This commit is contained in:
parent
569424274b
commit
b147788e5c
6 changed files with 20 additions and 11 deletions
7
setup.py
7
setup.py
|
@ -113,6 +113,11 @@ meshroomPhotog = PlatformExecutable(
|
|||
"bin/meshroom_photogrammetry"
|
||||
)
|
||||
|
||||
meshroomCompute = PlatformExecutable(
|
||||
"bin/meshroom_compute"
|
||||
)
|
||||
|
||||
|
||||
setup(
|
||||
name="Meshroom",
|
||||
description="Meshroom",
|
||||
|
@ -127,5 +132,5 @@ setup(
|
|||
],
|
||||
version=meshroom.__version__,
|
||||
options={"build_exe": build_exe_options},
|
||||
executables=[meshroomExe, meshroomPhotog],
|
||||
executables=[meshroomExe, meshroomPhotog, meshroomCompute],
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue