mirror of https://gitlab.com/basile.b/dexed.git
update version and add config to build full 64 bit win rlz, close #367
This commit is contained in:
parent
764649d8d5
commit
41ac2e083b
|
|
@ -25,5 +25,6 @@ temp
|
||||||
nux32
|
nux32
|
||||||
nux64
|
nux64
|
||||||
win32
|
win32
|
||||||
|
win64
|
||||||
output
|
output
|
||||||
ppas.bat
|
ppas.bat
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
object CurrentProject: TCENativeProject
|
object CurrentProject: TNativeProject
|
||||||
OptionsCollection = <
|
OptionsCollection = <
|
||||||
item
|
item
|
||||||
name = 'win32'
|
name = 'win32'
|
||||||
messagesOptions.tlsInformations = True
|
messagesOptions.tlsInformations = True
|
||||||
|
|
@ -21,14 +21,46 @@ object CurrentProject: TCENativeProject
|
||||||
' zip-win32.bat'
|
' zip-win32.bat'
|
||||||
)
|
)
|
||||||
preBuildProcess.showWindow = swoHIDE
|
preBuildProcess.showWindow = swoHIDE
|
||||||
postBuildProcess.executable = 'setupzip-win32.bat'
|
postBuildProcess.executable = 'setupzip-win-noarch.bat'
|
||||||
postBuildProcess.workingDirectory = '<CPP>'
|
postBuildProcess.workingDirectory = '<CPP>'
|
||||||
postBuildProcess.options = [poUsePipes, poStderrToOutPut]
|
postBuildProcess.options = [poUsePipes, poStderrToOutPut]
|
||||||
postBuildProcess.parameters.Strings = (
|
postBuildProcess.parameters.Strings = (
|
||||||
'<CPO>'
|
'<CPO>'
|
||||||
)
|
)
|
||||||
postBuildProcess.showWindow = swoHIDE
|
postBuildProcess.showWindow = swoHIDE
|
||||||
end
|
end
|
||||||
|
item
|
||||||
|
name = 'win64'
|
||||||
|
messagesOptions.tlsInformations = True
|
||||||
|
outputOptions.inlining = True
|
||||||
|
outputOptions.boundsCheck = offAlways
|
||||||
|
outputOptions.optimizations = True
|
||||||
|
outputOptions.release = True
|
||||||
|
pathsOptions.outputFilename = 'output/dexed.<CPV>.win64.setup'
|
||||||
|
pathsOptions.importStringPaths.Strings = (
|
||||||
|
'win64/'
|
||||||
|
'<CPP>'
|
||||||
|
)
|
||||||
|
pathsOptions.forceExtension = True
|
||||||
|
otherOptions.dmdOtherOptions.Strings = (
|
||||||
|
'-m64'
|
||||||
|
)
|
||||||
|
preBuildProcess.executable = 'cmd'
|
||||||
|
preBuildProcess.workingDirectory = '<CPP>'
|
||||||
|
preBuildProcess.options = [poUsePipes, poStderrToOutPut]
|
||||||
|
preBuildProcess.parameters.Strings = (
|
||||||
|
'/c'
|
||||||
|
' zip-win64.bat'
|
||||||
|
)
|
||||||
|
preBuildProcess.showWindow = swoHIDE
|
||||||
|
postBuildProcess.executable = 'setupzip-win-noarch.bat'
|
||||||
|
postBuildProcess.workingDirectory = '<CPP>'
|
||||||
|
postBuildProcess.options = [poUsePipes, poStderrToOutPut]
|
||||||
|
postBuildProcess.parameters.Strings = (
|
||||||
|
'<CPO>'
|
||||||
|
)
|
||||||
|
postBuildProcess.showWindow = swoHIDE
|
||||||
|
end
|
||||||
item
|
item
|
||||||
name = 'nux32'
|
name = 'nux32'
|
||||||
outputOptions.inlining = True
|
outputOptions.inlining = True
|
||||||
|
|
@ -53,7 +85,7 @@ object CurrentProject: TCENativeProject
|
||||||
'setupzip-nux-noarch.sh'
|
'setupzip-nux-noarch.sh'
|
||||||
'<CPO>'
|
'<CPO>'
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
item
|
item
|
||||||
name = 'nux64'
|
name = 'nux64'
|
||||||
outputOptions.inlining = True
|
outputOptions.inlining = True
|
||||||
|
|
@ -83,6 +115,6 @@ object CurrentProject: TCENativeProject
|
||||||
Sources.Strings = (
|
Sources.Strings = (
|
||||||
'setup.d'
|
'setup.d'
|
||||||
)
|
)
|
||||||
ConfigurationIndex = 2
|
ConfigurationIndex = 3
|
||||||
version = '3.6.21'
|
version = '3.7.0'
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
v3.6.21
|
v3.7.0
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
set /p ver=<version.txt
|
||||||
|
set ver=%ver:~1%
|
||||||
|
cd win64
|
||||||
|
:: assuming 7zip binary folder is somewhere in PATH
|
||||||
|
7z a -tzip -mx9^
|
||||||
|
..\output\dexed.%ver%.win64.zip^
|
||||||
|
dcd.license.txt dexed.license.txt^
|
||||||
|
dexed.exe dastworx.exe^
|
||||||
|
dexed.ico dexed.png^
|
||||||
|
dcd-server.exe dcd-client.exe dscanner.exe
|
||||||
Loading…
Reference in New Issue