mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Add ConfigSettings.cpp/h
This commit is contained in:
parent
873bc7c295
commit
5a1e9ed8f1
7 changed files with 13 additions and 0 deletions
|
@ -1740,6 +1740,8 @@ add_library(${CoreLibName} ${CoreLinkType}
|
|||
${CommonJIT}
|
||||
Core/Config.cpp
|
||||
Core/Config.h
|
||||
Core/ConfigSettings.cpp
|
||||
Core/ConfigSettings.h
|
||||
Core/ConfigValues.h
|
||||
Core/ControlMapper.cpp
|
||||
Core/ControlMapper.h
|
||||
|
|
3
Core/ConfigSettings.cpp
Normal file
3
Core/ConfigSettings.cpp
Normal file
|
@ -0,0 +1,3 @@
|
|||
#include "Core/ConfigSettings.h"
|
||||
#include "Core/ConfigValues.h"
|
||||
|
2
Core/ConfigSettings.h
Normal file
2
Core/ConfigSettings.h
Normal file
|
@ -0,0 +1,2 @@
|
|||
#pragma once
|
||||
|
|
@ -281,6 +281,7 @@
|
|||
<ClInclude Include="..\..\Core\AVIDump.h" />
|
||||
<ClInclude Include="..\..\Core\Compatibility.h" />
|
||||
<ClInclude Include="..\..\Core\Config.h" />
|
||||
<ClInclude Include="..\..\Core\ConfigSettings.h" />
|
||||
<ClInclude Include="..\..\Core\ControlMapper.h" />
|
||||
<ClInclude Include="..\..\Core\Core.h" />
|
||||
<ClInclude Include="..\..\Core\CoreParameter.h" />
|
||||
|
@ -521,6 +522,7 @@
|
|||
<ClCompile Include="..\..\Core\AVIDump.cpp" />
|
||||
<ClCompile Include="..\..\Core\Compatibility.cpp" />
|
||||
<ClCompile Include="..\..\Core\Config.cpp" />
|
||||
<ClCompile Include="..\..\Core\ConfigSettings.cpp" />
|
||||
<ClCompile Include="..\..\Core\ControlMapper.cpp" />
|
||||
<ClCompile Include="..\..\Core\Core.cpp" />
|
||||
<ClCompile Include="..\..\Core\CoreTiming.cpp" />
|
||||
|
|
|
@ -1126,6 +1126,7 @@
|
|||
<ClCompile Include="..\..\Core\MIPS\MIPSVFPUFallbacks.cpp">
|
||||
<Filter>MIPS</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\Core\ConfigSettings.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="pch.h" />
|
||||
|
@ -1780,6 +1781,7 @@
|
|||
<ClInclude Include="..\..\Core\MIPS\MIPSVFPUFallbacks.h">
|
||||
<Filter>MIPS</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\Core\ConfigSettings.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\..\ext\gason\LICENSE">
|
||||
|
|
|
@ -440,6 +440,7 @@ EXEC_AND_LIB_FILES := \
|
|||
$(SRC)/Core/Core.cpp \
|
||||
$(SRC)/Core/Compatibility.cpp \
|
||||
$(SRC)/Core/Config.cpp \
|
||||
$(SRC)/Core/ConfigSettings.cpp \
|
||||
$(SRC)/Core/CoreTiming.cpp \
|
||||
$(SRC)/Core/CwCheat.cpp \
|
||||
$(SRC)/Core/HDRemaster.cpp \
|
||||
|
|
|
@ -501,6 +501,7 @@ SOURCES_CXX += \
|
|||
$(EXTDIR)/jpge/jpge.cpp \
|
||||
$(COREDIR)/AVIDump.cpp \
|
||||
$(COREDIR)/Config.cpp \
|
||||
$(COREDIR)/ConfigSettings.cpp \
|
||||
$(COREDIR)/ControlMapper.cpp \
|
||||
$(COREDIR)/Core.cpp \
|
||||
$(COREDIR)/WaveFile.cpp \
|
||||
|
|
Loading…
Add table
Reference in a new issue