comparison installer-files/octave-firsttime.vbs @ 6174:cf7adc238c0c

* installer-files/cmdshell.bat, installer-files/octave-firsttime.vbs, installer-files/octave-launch.c, installer-files/octave.bat, installer-files/octave.vbs: add pkg config path env
author John Donoghue <john.donoghue@ieee.org>
date Tue, 19 Apr 2022 09:26:38 -0400
parents dace3d372190
children d02b5d26ac28
comparison
equal deleted inserted replaced
6173:5216d9e6fa2a 6174:cf7adc238c0c
53 wshSystemEnv("QT_PLUGIN_PATH") = OctavePath & "\qt5\plugins" 53 wshSystemEnv("QT_PLUGIN_PATH") = OctavePath & "\qt5\plugins"
54 Else 54 Else
55 wshSystemEnv("QT_PLUGIN_PATH") = OctavePath & "\plugins" 55 wshSystemEnv("QT_PLUGIN_PATH") = OctavePath & "\plugins"
56 End If 56 End If
57 57
58 ' pkg config pc path
59 wshSystemEnv("PKG_CONFIG_PATH") = OctavePath & "\lib\pkgconfig"
60
58 ' set directory to users 61 ' set directory to users
59 startpath = wshShell.ExpandEnvironmentStrings("%UserProfile%") 62 startpath = wshShell.ExpandEnvironmentStrings("%UserProfile%")
60 wshShell.CurrentDirectory = startpath 63 wshShell.CurrentDirectory = startpath
61 64
62 GUIArg = " " & chr(34) & "--gui" & chr(34) 65 GUIArg = " " & chr(34) & "--gui" & chr(34)