-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
dependency_setup.bat
54 lines (44 loc) · 1.56 KB
/
dependency_setup.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
@REM Creating directories...
MKDIR .\Debug
MKDIR .\Debug\icons
MKDIR .\Debug\fonts
MKDIR .\Debug\sfx
MKDIR .\Release
MKDIR .\Release\icons
MKDIR .\Release\fonts
MKDIR .\Release\sfx
MKDIR .\x64\Debug
MKDIR .\x64\Debug\icons
MKDIR .\x64\Debug\fonts
MKDIR .\x64\Debug\sfx
MKDIR .\x64\Release
MKDIR .\x64\Release\icons
MKDIR .\x64\Release\fonts
MKDIR .\x64\Release\sfx
@REM Copying important notice
COPY ".\IMPORTANT - READ THIS FIRST.txt" .\x64\Debug
COPY ".\IMPORTANT - READ THIS FIRST.txt" .\x64\Release
COPY ".\IMPORTANT - READ THIS FIRST.txt" .\Debug
COPY ".\IMPORTANT - READ THIS FIRST.txt" .\Release
@REM Copying dependencies...
COPY .\Dependencies\parsecsdk\windows\parsec.dll .\x64\Debug
COPY .\Dependencies\parsecsdk\windows\parsec.dll .\x64\Release
COPY .\Dependencies\parsecsdk\windows\parsec32.dll .\Debug
COPY .\Dependencies\parsecsdk\windows\parsec32.dll .\Release
COPY .\Dependencies\sdl\lib\x64\SDL2.dll .\x64\Debug
COPY .\Dependencies\sdl\lib\x64\SDL2.dll .\x64\Release
COPY .\Dependencies\sdl\lib\x86\SDL2.dll .\Debug
COPY .\Dependencies\sdl\lib\x86\SDL2.dll .\Release
COPY .\ParsecSoda\fonts\ .\x64\Debug\fonts\
COPY .\ParsecSoda\fonts\ .\x64\Release\fonts\
COPY .\ParsecSoda\fonts\ .\Debug\fonts\
COPY .\ParsecSoda\fonts\ .\Release\fonts\
COPY .\ParsecSoda\sfx\ .\x64\Debug\sfx\
COPY .\ParsecSoda\sfx\ .\x64\Release\sfx\
COPY .\ParsecSoda\sfx\ .\Debug\sfx\
COPY .\ParsecSoda\sfx\ .\Release\sfx\
COPY .\ParsecSoda\icons\ .\x64\Debug\icons\
COPY .\ParsecSoda\icons\ .\x64\Release\icons\
COPY .\ParsecSoda\icons\ .\Debug\icons\
COPY .\ParsecSoda\icons\ .\Release\icons\
pause