mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
15 lines
166 B
Batchfile
15 lines
166 B
Batchfile
@echo off
|
|
setlocal enabledelayedexpansion
|
|
|
|
cd ../include/etl
|
|
|
|
> header_file_list.txt (
|
|
for %%f in (*.h) do (
|
|
echo %%~nxf
|
|
)
|
|
)
|
|
|
|
cd ../../test
|
|
|
|
endlocal
|