File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,10 @@ if not exist %game_root% (
20
20
for /f " delims=" %%a in ('chdir') do set git_root = %%a
21
21
set git_root = " %git_root% "
22
22
pushd %game_root%
23
- set xbin = _bin_dbg_Win32 _bin_mix_Win32 _bin_rel_Win32
23
+ set bin_dbg_win32 = _bin_dbg_Win32
24
+ set bin_mix_win32 = _bin_mix_Win32
25
+ set bin_rel_win32 = _bin_rel_Win32
26
+ set xbin = %bin_dbg_win32% %bin_mix_win32% %bin_rel_win32%
24
27
for %%b in (%xbin% ) do (
25
28
if not exist %%b (
26
29
mkdir %%b
@@ -36,9 +39,9 @@ for %%b in (%xbin%) do (
36
39
cp %git_root% \src\Externals\OpenSSL\bin\libeay32.dll %%b \libeay32.dll
37
40
cp %git_root% \src\Externals\OpenSSL\bin\ssleay32.dll %%b \ssleay32.dll
38
41
)
39
- cp %git_root% \src\Externals\BugTrap\bin\BugTrapD.dll !xbin[0]! \BugTrap.dll
40
- cp %git_root% \src\Externals\BugTrap\bin\BugTrap.dll !xbin[1]! \BugTrap.dll
41
- cp %git_root% \src\Externals\BugTrap\bin\BugTrap.dll !xbin[2]! \BugTrap.dll
42
+ cp %git_root% \src\Externals\BugTrap\bin\BugTrapD.dll %bin_dbg_win32% \BugTrap.dll
43
+ cp %git_root% \src\Externals\BugTrap\bin\BugTrap.dll %bin_mix_win32% \BugTrap.dll
44
+ cp %git_root% \src\Externals\BugTrap\bin\BugTrap.dll %bin_rel_win32% \BugTrap.dll
42
45
if exist gamedata (
43
46
echo gamedata already exists. Remove/rename it, then
44
47
echo create soft link to " %git_root% \res\gamedata"
You can’t perform that action at this time.
0 commit comments