Files correlati : Commento : Aggiunta cartella build contenente i progetti git-svn-id: svn://10.65.10.50/branches/R_10_00@23240 c028cbd2-c16b-5b4b-a496-9718f37d4682
16 lines
300 B
Batchfile
16 lines
300 B
Batchfile
rem @echo off
|
|
echo Compiling Form %1 into %2
|
|
|
|
copy ..\src\include\lffiles.h+%1 %TMP%\frm.tmp
|
|
set oldinc=%include
|
|
set include=..\src\include;%~p1
|
|
cl /nologo /EP %TMP%\frm.tmp >%TMP%\tmp.frm
|
|
set include=%oldinc
|
|
set oldinc=
|
|
|
|
fastrip %TMP%\tmp.frm %2
|
|
del %TMP%\tmp.frm
|
|
del %TMP%\frm.tmp
|
|
|
|
|