mirror of https://gitlab.com/basile.b/dexed.git
fix zip script for ubuntu-based OS
This commit is contained in:
parent
75399366b8
commit
a4cd64d58e
|
@ -7,9 +7,9 @@ object CurrentProject: TCENativeProject
|
|||
outputOptions.boundsCheck = offAlways
|
||||
outputOptions.optimizations = True
|
||||
outputOptions.release = True
|
||||
pathsOptions.outputFilename = 'output\coedit.3beta1.win32.setup'
|
||||
pathsOptions.outputFilename = 'output/coedit.3beta1.win32.setup'
|
||||
pathsOptions.importStringPaths.Strings = (
|
||||
'win32\'
|
||||
'win32/'
|
||||
'<CPP>'
|
||||
)
|
||||
pathsOptions.forceExtension = True
|
||||
|
@ -35,17 +35,17 @@ object CurrentProject: TCENativeProject
|
|||
outputOptions.boundsCheck = offAlways
|
||||
outputOptions.optimizations = True
|
||||
outputOptions.release = True
|
||||
pathsOptions.outputFilename = 'output\coedit.3beta1.linux32.setup'
|
||||
pathsOptions.outputFilename = 'output/coedit.3beta1.linux32.setup'
|
||||
pathsOptions.importStringPaths.Strings = (
|
||||
'nux32\'
|
||||
'nux32/'
|
||||
'<CPP>'
|
||||
)
|
||||
preBuildProcess.executable = 'sh'
|
||||
preBuildProcess.executable = 'bash'
|
||||
preBuildProcess.options = [poUsePipes, poStderrToOutPut]
|
||||
preBuildProcess.parameters.Strings = (
|
||||
'zip-nux32.sh'
|
||||
)
|
||||
postBuildProcess.executable = 'sh'
|
||||
postBuildProcess.executable = 'bash'
|
||||
postBuildProcess.options = [poUsePipes, poStderrToOutPut]
|
||||
postBuildProcess.parameters.Strings = (
|
||||
'setupzip-nux-noarch.sh'
|
||||
|
@ -58,9 +58,9 @@ object CurrentProject: TCENativeProject
|
|||
outputOptions.boundsCheck = offAlways
|
||||
outputOptions.optimizations = True
|
||||
outputOptions.release = True
|
||||
pathsOptions.outputFilename = 'output\coedit.3beta1.linux64.setup'
|
||||
pathsOptions.outputFilename = 'output/coedit.3beta1.linux64.setup'
|
||||
pathsOptions.importStringPaths.Strings = (
|
||||
'nux64\'
|
||||
'nux64/'
|
||||
'<CPP>'
|
||||
)
|
||||
preBuildProcess.executable = 'sh'
|
||||
|
@ -78,5 +78,5 @@ object CurrentProject: TCENativeProject
|
|||
Sources.Strings = (
|
||||
'cesetup.d'
|
||||
)
|
||||
ConfigurationIndex = 0
|
||||
ConfigurationIndex = 2
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue