comparison installer-files/octave.vbs @ 3909:586b26b09042

set QT_PLUGIN_PATH in octave.vbs
author John W. Eaton <jwe@octave.org>
date Fri, 17 Apr 2015 14:53:00 -0400
parents 74f53761f74d
children 908a2a0cf6d6
comparison
equal deleted inserted replaced
3908:5863c4ed08b1 3909:586b26b09042
11 Set wshSystemEnv = wshShell.Environment( "PROCESS" ) 11 Set wshSystemEnv = wshShell.Environment( "PROCESS" )
12 wshSystemEnv("PATH") = OctavePath & "\bin;" & wshSystemEnv("PATH") 12 wshSystemEnv("PATH") = OctavePath & "\bin;" & wshSystemEnv("PATH")
13 13
14 ' set terminal type 14 ' set terminal type
15 wshSystemEnv("TERM") = "cygwin" 15 wshSystemEnv("TERM") = "cygwin"
16
17 ' set Qt plugin directory
18 wshSystemEnv("QT_PLUGIN_PATH") = OctavePath & "\plugins"
16 19
17 ' check args to see if told to run gui or command line 20 ' check args to see if told to run gui or command line
18 ' and build other args to use 21 ' and build other args to use
19 GUI_MODE=1 22 GUI_MODE=1
20 AllArgs = "" 23 AllArgs = ""