1
0
mirror of https://github.com/pConst/basic_verilog.git synced 2025-01-14 06:42:54 +08:00
basic_verilog/scripts/compile_flow_quartus.bat
Konstantin Pavlov 2543bcd567 Added scripts
2022-08-24 12:42:56 +03:00

19 lines
436 B
Batchfile

@echo off
rem ----------------------------------------------------------------------------
rem compile_flow_quartus.bat
rem Konstantin Pavlov, pavlovconst@gmail.com
rem ----------------------------------------------------------------------------
rem The simplest way to compile Quartus project from commandline
for /R %%f in (*.qpf) do (
echo "Project name is %%~nf"
quartus_sh --flow compile %%~nf
)
echo "DONE!"
pause
exit