From f8c12cf58c913448d4e51aeb36e48a22e7a1aa34 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Thu, 27 Aug 2015 00:15:11 +0200 Subject: [PATCH] setup program, zip output using post build process --- cesetup/cesetup.coedit | 26 ++++++++++++++++++++++++++ cesetup/readme.md | 22 +++++++++++++--------- cesetup/setupzip-nux-noarch.sh | 4 ++++ cesetup/setupzip-win32.bat | 4 ++++ 4 files changed, 47 insertions(+), 9 deletions(-) create mode 100644 cesetup/setupzip-nux-noarch.sh create mode 100644 cesetup/setupzip-win32.bat diff --git a/cesetup/cesetup.coedit b/cesetup/cesetup.coedit index 397091e3..fdb69bfb 100644 --- a/cesetup/cesetup.coedit +++ b/cesetup/cesetup.coedit @@ -17,6 +17,10 @@ object CurrentProject: TCENativeProject '/c' ' zip-win32.bat' ) + postBuildProcess.executable = 'zipsetup-win32.bat' + postBuildProcess.parameters.Strings = ( + '' + ) end item name = 'nux32' @@ -33,6 +37,11 @@ object CurrentProject: TCENativeProject preBuildProcess.parameters.Strings = ( 'zip-nux32.sh' ) + postBuildProcess.executable = 'sh' + postBuildProcess.parameters.Strings = ( + 'setupzip-nux-noarch.sh' + '' + ) end item name = 'nux64' @@ -49,6 +58,23 @@ object CurrentProject: TCENativeProject preBuildProcess.parameters.Strings = ( 'zip-nux64.sh' ) + postBuildProcess.executable = 'sh' + postBuildProcess.parameters.Strings = ( + 'setupzip-nux-noarch.sh' + '' + ) + end + item + name = 'devel-win32' + messagesOptions.tlsInformations = True + outputOptions.inlining = True + outputOptions.boundsCheck = offAlways + outputOptions.optimizations = True + outputOptions.release = True + pathsOptions.outputFilename = 'output\coedit.1update2.win32.setup.exe' + pathsOptions.importStringPaths.Strings = ( + 'win32\' + ) end> Sources.Strings = ( 'cesetup.d' diff --git a/cesetup/readme.md b/cesetup/readme.md index 6b207225..8f211d15 100644 --- a/cesetup/readme.md +++ b/cesetup/readme.md @@ -1,22 +1,26 @@ +This folder contains the files necessary to make a Coedit release. +The process is semi-automated and achieved by compiling a project in Coedit itself. + Coedit setup program === -This coedit project creates the coedit setup program. -The project contains 3 configurations. Each one takes the content of one of the nux32/nux64/win32 folders -and put it in the output program at compile time (eg .data section). +This coedit project (_cesetup.coedit_) creates the coedit setup program. +The project contains 4 configurations: + +- _devel-win32_: it does not takes part in the release process. +- win32, nux32, nux64: they take respectively the content of their matching sub-folder and put it in the output program at compile time (using the `import(file)` expression). +The output program is then compressed by the post-build process, using the scripts named `setupzip-`. Raw Zip === -The shell scripts take the content of the nux32/nux64/win32 folders to make some simple zip files. -They are proposed alternatively to the setup program. The scripts are launched automatically when -the setup program is about to be compiled (as pre-build process). +The shell scripts named `zip-` take the content of their matching sub-folder to make an archive. +They are proposed alternatively to the setup program. The scripts are launched automatically when the setup program is about to be compiled (as pre-build process). Todo by hand for each release === - change the setup program _outputFilename_ for each configuration as well as the text printed to the console, according to the new version. - change the text in the _version.txt_ file. -- put the content (programs, icon, license, etc.) in each of nux32/nux64/win32 folders. -- compile on each platform with the right project configuration. -- zip the setup programs. (in the future: as a post-build process ?). +- put the content (programs, icon, license, etc.) in each of the nux32/nux64/win32 folders. +- compile on each platform with the right project configuration. \ No newline at end of file diff --git a/cesetup/setupzip-nux-noarch.sh b/cesetup/setupzip-nux-noarch.sh new file mode 100644 index 00000000..4b7985bc --- /dev/null +++ b/cesetup/setupzip-nux-noarch.sh @@ -0,0 +1,4 @@ +cd output +zip -9 -j $1.zip $1 +rm -f $1 +rm -f $1.o \ No newline at end of file diff --git a/cesetup/setupzip-win32.bat b/cesetup/setupzip-win32.bat new file mode 100644 index 00000000..8c7a3629 --- /dev/null +++ b/cesetup/setupzip-win32.bat @@ -0,0 +1,4 @@ +cd output +7z a -tzip -mx9 %~n1.zip %1 +if exist %1 del %1 +if exist %~n1.obj del %~n1.obj \ No newline at end of file