EgtCAM5 2.2a4 :

- aggiunta possibilità di usare un direttorio per le librerie lua diverso tra 32 e 64 bit.
This commit is contained in:
Dario Sassi
2020-01-16 19:11:07 +00:00
parent b1d34b11fa
commit 3caeffafda
3 changed files with 6 additions and 2 deletions
+1
View File
@@ -43,6 +43,7 @@ Module ConstIni
Public Const S_LUA As String = "Lua"
Public Const K_LIBSDIR As String = "LibsDir"
Public Const K_LIBSDIR64 As String = "LibsDir64"
Public Const K_BASELIB As String = "BaseLib"
Public Const S_GEOMDB As String = "GeomDB"
+3
View File
@@ -366,6 +366,9 @@ Public Class MainWindowVM
' imposto dir di default per libreria Lua e lancio libreria di base
Dim sLuaLibsDir As String = String.Empty
GetPrivateProfileString(S_LUA, K_LIBSDIR, "", sLuaLibsDir)
#If PLATFORM = "x64" Then
GetPrivateProfileString(S_LUA, K_LIBSDIR64, sLuaLibsDir, sLuaLibsDir)
#End If
EgtSetLuaLibs(sLuaLibsDir)
Dim sLuaBaseLib As String = String.Empty
GetPrivateProfileString(S_LUA, K_BASELIB, "EgtBase", sLuaBaseLib)
+2 -2
View File
@@ -70,5 +70,5 @@ Imports System.Windows
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("2.2.1.3")>
<Assembly: AssemblyFileVersion("2.2.1.3")>
<Assembly: AssemblyVersion("2.2.1.4")>
<Assembly: AssemblyFileVersion("2.2.1.4")>