Added simple console wizard for Eiffel Studio.

(It is not very user friendly, this is a first draft)
It should be improved in the future (with GUI, ...)
This commit is contained in:
Jocelyn Fiat
2012-06-22 15:54:50 +02:00
parent 87c2074d2b
commit 9b13aa27dd
14 changed files with 843 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
setlocal
rd /q/s tmp
mkdir tmp
ecb -config ewf_ise_wizard-safe.ecf -finalize -c_compile -project_path tmp
mkdir spec
mkdir spec\%ISE_PLATFORM%
move tmp\EIFGENs\ewf_ise_wizard\F_code\ewf_ise_wizard.exe spec\%ISE_PLATFORM%\wizard.exe
rd /q/s tmp
set WIZ_TARGET=%ISE_EIFFEL%\studio\wizards\new_projects\ewf
rd /q/s %WIZ_TARGET%
mkdir %WIZ_TARGET%
xcopy /I /E /Y %~dp0\pixmaps %WIZ_TARGET%\pixmaps
xcopy /I /E /Y %~dp0\resources %WIZ_TARGET%\resources
xcopy /I /E /Y %~dp0\spec %WIZ_TARGET%\spec
copy ewf.dsc %WIZ_TARGET%\..\ewf.dsc
endlocal