mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 02:08:08 +02:00
11 lines
374 B
Bash
11 lines
374 B
Bash
#!/bin/bash
|
|
|
|
PATH_QML=${ION_CONTAINER_ROOT}/base/qml/QtQuick
|
|
PATH_QML_TRUE=`readlink -f $PATH_QML`/../
|
|
PATH_PLUGIN=${ION_CONTAINER_ROOT}/base/imageformats/
|
|
PATH_PLUGIN_TRUE=`readlink -f $PATH_PLUGIN`/../
|
|
|
|
export QML2_IMPORT_PATH=$PATH_QML_TRUE:$QML2_IMPORT_PATH
|
|
export QT_PLUGIN_PATH=$PATH_PLUGIN_TRUE:$QT_PLUGIN_PATH
|
|
|
|
python ${ION_CONTAINER_ROOT}/base/meshroom/meshroom/ui
|