mirror of
https://github.com/pConst/basic_verilog.git
synced 2025-01-14 06:42:54 +08:00
19 lines
436 B
Batchfile
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
|