diff options
| author | JosJuice <josjuice@gmail.com> | 2023-01-07 09:37:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-07 09:37:25 +0100 |
| commit | 710d7e3637f9da1d0974572f04cf73f5fffe9b4b (patch) | |
| tree | 9bc941bad072c2f28c71c96230b37fd62a71a0aa /Source/Core | |
| parent | 7444f90e45928f15bcb7d6c4ccf98f06634062c5 (diff) | |
| parent | d20b71c296913e34d62f0d16c6fe1ccc099fe8ae (diff) | |
Merge pull request #11414 from Pokechu22/msvc-dsp-jit-x64-only
Move x64 DSP JIT into DolphinLib.x64.props
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinLib.props | 14 | ||||
| -rw-r--r-- | Source/Core/DolphinLib.x64.props | 14 |
2 files changed, 14 insertions, 14 deletions
diff --git a/Source/Core/DolphinLib.props b/Source/Core/DolphinLib.props index a7354ee00b..1ae8d7212a 100644 --- a/Source/Core/DolphinLib.props +++ b/Source/Core/DolphinLib.props @@ -214,9 +214,6 @@ <ClInclude Include="Core\DSP\Interpreter\DSPIntTables.h" /> <ClInclude Include="Core\DSP\Interpreter\DSPIntUtil.h" /> <ClInclude Include="Core\DSP\Jit\DSPEmitterBase.h" /> - <ClInclude Include="Core\DSP\Jit\x64\DSPEmitter.h" /> - <ClInclude Include="Core\DSP\Jit\x64\DSPJitRegCache.h" /> - <ClInclude Include="Core\DSP\Jit\x64\DSPJitTables.h" /> <ClInclude Include="Core\DSP\LabelMap.h" /> <ClInclude Include="Core\DSPEmulator.h" /> <ClInclude Include="Core\FifoPlayer\FifoDataFile.h" /> @@ -835,17 +832,6 @@ <ClCompile Include="Core\DSP\Interpreter\DSPIntMultiplier.cpp" /> <ClCompile Include="Core\DSP\Interpreter\DSPIntTables.cpp" /> <ClCompile Include="Core\DSP\Jit\DSPEmitterBase.cpp" /> - <ClCompile Include="Core\DSP\Jit\x64\DSPEmitter.cpp" /> - <ClCompile Include="Core\DSP\Jit\x64\DSPJitArithmetic.cpp" /> - <ClCompile Include="Core\DSP\Jit\x64\DSPJitBranch.cpp" /> - <ClCompile Include="Core\DSP\Jit\x64\DSPJitCCUtil.cpp" /> - <ClCompile Include="Core\DSP\Jit\x64\DSPJitExtOps.cpp" /> - <ClCompile Include="Core\DSP\Jit\x64\DSPJitLoadStore.cpp" /> - <ClCompile Include="Core\DSP\Jit\x64\DSPJitMisc.cpp" /> - <ClCompile Include="Core\DSP\Jit\x64\DSPJitMultiplier.cpp" /> - <ClCompile Include="Core\DSP\Jit\x64\DSPJitRegCache.cpp" /> - <ClCompile Include="Core\DSP\Jit\x64\DSPJitTables.cpp" /> - <ClCompile Include="Core\DSP\Jit\x64\DSPJitUtil.cpp" /> <ClCompile Include="Core\DSP\LabelMap.cpp" /> <ClCompile Include="Core\DSPEmulator.cpp" /> <ClCompile Include="Core\FifoPlayer\FifoDataFile.cpp" /> diff --git a/Source/Core/DolphinLib.x64.props b/Source/Core/DolphinLib.x64.props index 905c1dbf2e..fc9bb3fa65 100644 --- a/Source/Core/DolphinLib.x64.props +++ b/Source/Core/DolphinLib.x64.props @@ -4,6 +4,9 @@ <ClInclude Include="Common\x64ABI.h" /> <ClInclude Include="Common\x64Emitter.h" /> <ClInclude Include="Common\x64Reg.h" /> + <ClInclude Include="Core\DSP\Jit\x64\DSPEmitter.h" /> + <ClInclude Include="Core\DSP\Jit\x64\DSPJitRegCache.h" /> + <ClInclude Include="Core\DSP\Jit\x64\DSPJitTables.h" /> <ClInclude Include="Core\PowerPC\Jit64\Jit.h" /> <ClInclude Include="Core\PowerPC\Jit64\JitAsm.h" /> <ClInclude Include="Core\PowerPC\Jit64\RegCache\CachedReg.h" /> @@ -27,6 +30,17 @@ <ClCompile Include="Common\x64CPUDetect.cpp" /> <ClCompile Include="Common\x64Emitter.cpp" /> <ClCompile Include="Common\x64FPURoundMode.cpp" /> + <ClCompile Include="Core\DSP\Jit\x64\DSPEmitter.cpp" /> + <ClCompile Include="Core\DSP\Jit\x64\DSPJitArithmetic.cpp" /> + <ClCompile Include="Core\DSP\Jit\x64\DSPJitBranch.cpp" /> + <ClCompile Include="Core\DSP\Jit\x64\DSPJitCCUtil.cpp" /> + <ClCompile Include="Core\DSP\Jit\x64\DSPJitExtOps.cpp" /> + <ClCompile Include="Core\DSP\Jit\x64\DSPJitLoadStore.cpp" /> + <ClCompile Include="Core\DSP\Jit\x64\DSPJitMisc.cpp" /> + <ClCompile Include="Core\DSP\Jit\x64\DSPJitMultiplier.cpp" /> + <ClCompile Include="Core\DSP\Jit\x64\DSPJitRegCache.cpp" /> + <ClCompile Include="Core\DSP\Jit\x64\DSPJitTables.cpp" /> + <ClCompile Include="Core\DSP\Jit\x64\DSPJitUtil.cpp" /> <ClCompile Include="Core\PowerPC\Jit64\Jit_Branch.cpp" /> <ClCompile Include="Core\PowerPC\Jit64\Jit_FloatingPoint.cpp" /> <ClCompile Include="Core\PowerPC\Jit64\Jit_Integer.cpp" /> |
