FunctionImagingInPascal/build.bat

11 lines
156 B
Batchfile
Raw Normal View History

rm generator.exe
rm gui.exe
cd src
2020-05-12 13:52:09 +03:00
fpc mandelbrot_imaging.pas
mv mandelbrot_imaging.exe ../generator.exe
2020-04-27 20:52:58 +03:00
cd gui
fpc gui.pas
mv gui.exe ../../gui.exe
2020-04-27 20:52:58 +03:00
pause