You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
459 B
Batchfile
11 lines
459 B
Batchfile
@echo off
|
|
setlocal
|
|
set "FC_LIBPACK=E:\fc\LibPack-1.1.0-v3.1.1.3-Release"
|
|
set "FC_RUN=E:\fc\run-FreeCAD-1.1.1"
|
|
set "FC_PYSIDE=%FC_LIBPACK%\bin\Lib\site-packages\PySide6"
|
|
set "FC_SHIBOKEN=%FC_LIBPACK%\bin\Lib\site-packages\shiboken6"
|
|
set "QT_PLUGIN_PATH=%FC_LIBPACK%\plugins"
|
|
set "QML2_IMPORT_PATH=%FC_LIBPACK%\qml"
|
|
set "PATH=%FC_LIBPACK%\bin;%FC_LIBPACK%\lib;%FC_PYSIDE%;%FC_SHIBOKEN%;%FC_RUN%\bin;%PATH%"
|
|
start "" /D "%FC_RUN%\bin" "%FC_RUN%\bin\FreeCAD.exe"
|