-
Notifications
You must be signed in to change notification settings - Fork 27
/
makeSDK.bat
37 lines (31 loc) · 1.25 KB
/
makeSDK.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
md %1
md %1\include
md %1\include\CommonCrossPlatform
copy CommonCrossPlatform\Common.h %1\include\CommonCrossPlatform
copy CommonCrossPlatform\BasicTypes.h %1\include\CommonCrossPlatform
md %1\include\Execution
copy Execution\Execution.h %1\include\Execution
md %1\include\revtracer
copy revtracer\common.h %1\include\revtracer
copy revtracer\DebugPrintFlags.h %1\include\revtracer
copy revtracer\environment.h %1\include\revtracer
copy revtracer\revtracer.h %1\include\revtracer
copy revtracer\river.h %1\include\revtracer
copy revtracer\RiverAddress.h %1\include\revtracer
md %1\include\SymbolicEnvironment
copy SymbolicEnvironment\Environment.h %1\include\SymbolicEnvironment
copy SymbolicEnvironment\LargeStack.h %1\include\SymbolicEnvironment
copy SymbolicEnvironment\SymbolicEnvironment.h %1\include\SymbolicEnvironment
md %1\win
md %1\win\lib
copy Debug\Execution.lib %1\win\lib
copy Debug\SymbolicEnvironment.lib %1\win\lib
md %1\win\bin
copy Debug\revtracer.dll %1\win\bin
copy Debug\revtracer.pdb %1\win\bin
copy Debug\revtracer-wrapper.dll %1\win\bin
copy Debug\revtracer-wrapper.pdb %1\win\bin
copy Debug\Execution.dll %1\win\bin
copy Debug\Execution.pdb %1\win\bin
copy Debug\SymbolicEnvironment.dll %1\win\bin
copy Debug\SymbolicEnvironment.pdb %1\win\bin