diff options
author | Mathieu Vaillancourt <vaillancourtm@gmail.com> | 2014-04-19 00:30:53 +0200 |
---|---|---|
committer | Mathieu Vaillancourt <vaillancourtm@gmail.com> | 2014-04-19 00:34:23 +0200 |
commit | e5f09b8be65c06927164428b5d400024e2388dbc (patch) | |
tree | 0f0fd4035bcc88c0de5a47a7d3c64b4f67453897 /src/citra_qt/citra_qt.vcxproj | |
parent | Merge branch 'hle-interface' (diff) | |
download | yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar.gz yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar.bz2 yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar.lz yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar.xz yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar.zst yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.zip |
Diffstat (limited to 'src/citra_qt/citra_qt.vcxproj')
-rw-r--r-- | src/citra_qt/citra_qt.vcxproj | 35 |
1 files changed, 12 insertions, 23 deletions
diff --git a/src/citra_qt/citra_qt.vcxproj b/src/citra_qt/citra_qt.vcxproj index 735f06e5b..3f24bbfbf 100644 --- a/src/citra_qt/citra_qt.vcxproj +++ b/src/citra_qt/citra_qt.vcxproj @@ -127,27 +127,25 @@ <ClCompile Include="..\..\externals\qhexedit\qhexedit.cpp" /> <ClCompile Include="..\..\externals\qhexedit\qhexedit_p.cpp" /> <ClCompile Include="..\..\externals\qhexedit\xbytearray.cpp" /> - <ClCompile Include="bootmanager.cpp" /> - <ClCompile Include="callstack.cpp" /> <ClCompile Include="config\controller_config.cpp" /> <ClCompile Include="config\controller_config_util.cpp" /> - <ClCompile Include="cpu_regs.cpp" /> - <ClCompile Include="disasm.cpp" /> + <ClCompile Include="debugger\callstack.cpp" /> + <ClCompile Include="debugger\registers.cpp" /> + <ClCompile Include="debugger\disassembler.cpp" /> + <ClCompile Include="debugger\ramview.cpp" /> + <ClCompile Include="bootmanager.cpp" /> <ClCompile Include="hotkeys.cpp" /> <ClCompile Include="main.cpp" /> - <ClCompile Include="ramview.cpp" /> </ItemGroup> <ItemGroup> <MOC Include="..\..\externals\qhexedit\commands.h" /> <MOC Include="..\..\externals\qhexedit\qhexedit.h" /> <MOC Include="..\..\externals\qhexedit\qhexedit_p.h" /> <MOC Include="..\..\externals\qhexedit\xbytearray.h" /> - <MOC Include="config\controller_config.hxx" /> - <MOC Include="config\controller_config_util.hxx" /> - <MOC Include="callstack.hxx" /> - <MOC Include="cpu_regs.hxx" /> - <MOC Include="disasm.hxx" /> - <MOC Include="ramview.hxx" /> + <MOC Include="debugger\callstack.hxx" /> + <MOC Include="debugger\registers.hxx" /> + <MOC Include="debugger\disassembler.hxx" /> + <MOC Include="debugger\ramview.hxx" /> <MOC Include="bootmanager.hxx" /> <MOC Include="hotkeys.hxx" /> <MOC Include="main.hxx" /> @@ -164,25 +162,16 @@ </ProjectReference> </ItemGroup> <ItemGroup> - <ClInclude Include="callstack.hxx" /> <ClInclude Include="config\controller_config.hxx" /> <ClInclude Include="config\controller_config_util.hxx" /> - <ClInclude Include="cpu_regs.hxx" /> - <ClInclude Include="disasm.hxx" /> - <ClInclude Include="ramview.hxx" /> - <ClInclude Include="ui_callstack.h" /> <ClInclude Include="ui_controller_config.h" /> - <ClInclude Include="ui_cpu_regs.h" /> - <ClInclude Include="ui_disasm.h" /> - <ClInclude Include="ui_hotkeys.h" /> - <ClInclude Include="ui_main.h" /> <ClInclude Include="version.h" /> </ItemGroup> <ItemGroup> - <UIC Include="callstack.ui" /> <UIC Include="config\controller_config.ui" /> - <UIC Include="cpu_regs.ui" /> - <UIC Include="disasm.ui" /> + <UIC Include="debugger\callstack.ui" /> + <UIC Include="debugger\registers.ui" /> + <UIC Include="debugger\disassembler.ui" /> <UIC Include="hotkeys.ui" /> <UIC Include="main.ui" /> </ItemGroup> |