Skip to content

Commit cf8aa2f

Browse files
committed
Fix the build script
1 parent 3af8bd9 commit cf8aa2f

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

data/templates/src/pe/build_all.bat

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
@echo off
22

3+
echo Compiling DLLs
4+
35
for /D %%d in (dll*) do (
46
pushd "%%d"
5-
build.bat
7+
call build.bat
68
popd
79
)
810

9-
for /D %%d in (exe*) do (
10-
pushd "%%d"
11-
build.bat
11+
echo Compiling EXEs
12+
13+
for /D %%e in (exe*) do (
14+
pushd "%%e"
15+
call build.bat
1216
popd
1317
)
14-

0 commit comments

Comments
 (0)