forked from soywiz-archive/cspspemu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmerge_autotests.bat
26 lines (25 loc) · 1.19 KB
/
merge_autotests.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
@ECHO OFF
IF "%1"=="Debug" GOTO END
PUSHD %~dp0
REM SET BASE_FOLDER=CSPspEmu.Sandbox\bin\Debug
SET BASE_FOLDER=%~dp0\CSPspEmu.TestsAuto\bin\Debug
SET FILES=
SET FILES=%FILES% "%BASE_FOLDER%\CSPspEmu.AutoTests.exe"
SET FILES=%FILES% "%BASE_FOLDER%\CSharpUtils.dll"
SET FILES=%FILES% "%BASE_FOLDER%\CSharpUtils.Drawing.dll"
SET FILES=%FILES% "%BASE_FOLDER%\CSPspEmu.Core.Audio.Imple.Openal.dll"
SET FILES=%FILES% "%BASE_FOLDER%\CSPspEmu.Core.Cpu.dll"
SET FILES=%FILES% "%BASE_FOLDER%\CSPspEmu.Core.dll"
SET FILES=%FILES% "%BASE_FOLDER%\CSPspEmu.Core.Gpu.dll"
SET FILES=%FILES% "%BASE_FOLDER%\CSPspEmu.Core.Gpu.Impl.Opengl.dll"
REM SET FILES=%FILES% "%BASE_FOLDER%\CSPspEmu.Core.Tests.dll"
REM SET FILES=%FILES% "%BASE_FOLDER%\CSPspEmu.Gui.Winforms.dll"
SET FILES=%FILES% "%BASE_FOLDER%\CSPspEmu.Hle.dll"
SET FILES=%FILES% "%BASE_FOLDER%\CSPspEmu.Hle.Modules.dll"
SET FILES=%FILES% "%BASE_FOLDER%\CSPspEmu.Runner.dll"
REM SET FILES=%FILES% "%BASE_FOLDER%\OpenTK.dll"
SET TARGET=/targetplatform:v4,"%ProgramFiles(x86)%\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0"
"%~dp0\utils\ilmerge\ILMerge.exe" %TARGET% /out:cspspemu_autotests.exe %FILES%
COPY %BASE_FOLDER%\OpenTK.dll .
POPD
:END