Commit f2b93f8

Nick committed on
Update SetupHardlinks to work with the new 64 bit dirs
commit f2b93f80c625c379f016b5c3291fb2984ed706bf parent cf861eb
1 changed files +20−0
ModifiedSetupHardlinks.cmd +20−0
@@ -1,13 +1,33 @@
1 if not exist lib\Development\i386-win32 goto prod32
1 pushd lib\Development\i386-win32 2 pushd lib\Development\i386-win32
2 mklink/J hUGEDriver ..\..\..\hUGEDriver 3 mklink/J hUGEDriver ..\..\..\hUGEDriver
3 mklink/H halt.gb ..\..\..\halt.gb 4 mklink/H halt.gb ..\..\..\halt.gb
4 5
5 popd 6 popd
6 7
8 :prod32
9 if not exist lib\Production\i386-win32 goto dev64
7 pushd lib\Production\i386-win32 10 pushd lib\Production\i386-win32
8 mklink/J hUGEDriver ..\..\..\hUGEDriver 11 mklink/J hUGEDriver ..\..\..\hUGEDriver
9 mklink/H halt.gb ..\..\..\halt.gb 12 mklink/H halt.gb ..\..\..\halt.gb
10 13
11 popd 14 popd
12 15
16 :dev64
17 if not exist lib\Development\x86_64-win64 goto prod64
18 pushd lib\Development\x86_64-win64
19 mklink/J hUGEDriver ..\..\..\hUGEDriver
20 mklink/H halt.gb ..\..\..\halt.gb
21
22 popd
23
24 :prod64
25 if not exist lib\Production\x86_64-win64 goto end
26 pushd lib\Production\x86_64-win64
27 mklink/J hUGEDriver ..\..\..\hUGEDriver
28 mklink/H halt.gb ..\..\..\halt.gb
29
30 popd
31
32 :end
13 pause 33 pause