Fix multiple compilation issues for all platforms.

This commit is contained in:
The Dax 2013-07-03 14:37:31 -04:00
parent c8431493be
commit ab8c1f5b5f
7 changed files with 10 additions and 3 deletions

View File

@ -186,6 +186,7 @@
<ClInclude Include="FixedSizeQueue.h" />
<ClInclude Include="FixedSizeUnorderedSet.h" />
<ClInclude Include="Hash.h" />
<ClInclude Include="KeyMap.h" />
<ClInclude Include="LinearDiskCache.h" />
<ClInclude Include="Log.h" />
<ClInclude Include="LogManager.h" />
@ -225,6 +226,7 @@
<ClCompile Include="FileSearch.cpp" />
<ClCompile Include="FileUtil.cpp" />
<ClCompile Include="Hash.cpp" />
<ClCompile Include="KeyMap.cpp" />
<ClCompile Include="LogManager.cpp" />
<ClCompile Include="MathUtil.cpp" />
<ClCompile Include="MemArena.cpp" />

View File

@ -46,6 +46,7 @@
<ClInclude Include="Crypto\md5.h">
<Filter>Crypto</Filter>
</ClInclude>
<ClInclude Include="KeyMap.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="stdafx.cpp" />
@ -76,6 +77,7 @@
<ClCompile Include="Crypto\md5.cpp">
<Filter>Crypto</Filter>
</ClCompile>
<ClCompile Include="KeyMap.cpp" />
</ItemGroup>
<ItemGroup>
<None Include="CMakeLists.txt" />

View File

@ -16,7 +16,7 @@
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#include "input/input_state.h"
#include "Core/Config.h"
#include "../Core/Config.h"
#include "KeyMap.h"
using namespace KeyMap;

View File

@ -20,7 +20,7 @@
#include <string>
#include <map>
#include "input/keycodes.h" // keyboard keys
#include "Core/HLE/sceCtrl.h" // psp keys
#include "../Core/HLE/sceCtrl.h" // psp keys
#define KEYMAP_ERROR_KEY_ALREADY_USED -1
#define KEYMAP_ERROR_UNKNOWN_KEY 0

View File

@ -17,7 +17,7 @@
#pragma once
#include "Common/CommonTypes.h"
#include "../Common/CommonTypes.h"
class PointerWrap;

View File

@ -37,6 +37,7 @@ SOURCES += ../Common/ColorUtil.cpp \
../Common/FileUtil.cpp \
../Common/Hash.cpp \
../Common/LogManager.cpp \
../Common/KeyMap.cpp \
../Common/MathUtil.cpp \
../Common/MemArena.cpp \
../Common/MemoryUtil.cpp \
@ -56,6 +57,7 @@ HEADERS += ../Common/ChunkFile.h \
../Common/FileUtil.h \
../Common/Hash.h \
../Common/LogManager.h \
../Common/KeyMap.cpp \
../Common/MathUtil.h \
../Common/MemArena.h \
../Common/MemoryUtil.h \

View File

@ -152,6 +152,7 @@ LOCAL_SRC_FILES := \
$(SRC)/ext/snappy/snappy.cpp \
$(SRC)/ext/xbrz/xbrz.cpp \
$(SRC)/Common/Crypto/md5.cpp \
$(SRC)/Common/KeyMap.cpp \
$(SRC)/Common/LogManager.cpp \
$(SRC)/Common/MemArena.cpp \
$(SRC)/Common/MemoryUtil.cpp \