mirror of https://github.com/PCSX2/pcsx2.git
Linux compilation fixes.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3179 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
e86d1d1bd4
commit
e281b79ed1
|
@ -154,6 +154,7 @@
|
|||
<Unit filename="../../include/Utilities/FixedPointTypes.h" />
|
||||
<Unit filename="../../include/Utilities/General.h" />
|
||||
<Unit filename="../../include/Utilities/HashMap.h" />
|
||||
<Unit filename="../../include/Utilities/IniInterface.h" />
|
||||
<Unit filename="../../include/Utilities/MemcpyFast.h" />
|
||||
<Unit filename="../../include/Utilities/Path.h" />
|
||||
<Unit filename="../../include/Utilities/PersistentThread.h" />
|
||||
|
@ -182,6 +183,7 @@
|
|||
<Unit filename="../../src/Utilities/Exceptions.cpp" />
|
||||
<Unit filename="../../src/Utilities/FastFormatString.cpp" />
|
||||
<Unit filename="../../src/Utilities/HashTools.cpp" />
|
||||
<Unit filename="../../src/Utilities/IniInterface.cpp" />
|
||||
<Unit filename="../../src/Utilities/Linux/LnxHostSys.cpp" />
|
||||
<Unit filename="../../src/Utilities/Linux/LnxMisc.cpp" />
|
||||
<Unit filename="../../src/Utilities/Linux/LnxThreads.cpp" />
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "FixedPointTypes.h"
|
||||
#include "path.h"
|
||||
#include "Path.h"
|
||||
#include <wx/config.h>
|
||||
|
||||
// --------------------------------------------------------------------------------------
|
||||
|
|
|
@ -107,6 +107,7 @@ set(UtilitiesSources
|
|||
Exceptions.cpp
|
||||
FastFormatString.cpp
|
||||
HashTools.cpp
|
||||
IniInterface.cpp
|
||||
Linux/LnxHostSys.cpp
|
||||
Linux/LnxMisc.cpp
|
||||
Linux/LnxThreads.cpp
|
||||
|
|
|
@ -318,7 +318,6 @@ set(pcsx2GuiSources
|
|||
gui/FrameForGS.cpp
|
||||
gui/GlobalCommands.cpp
|
||||
gui/i18n.cpp
|
||||
gui/IniInterface.cpp
|
||||
gui/IsoDropTarget.cpp
|
||||
gui/MainFrame.cpp
|
||||
gui/MainMenuClicks.cpp
|
||||
|
@ -363,7 +362,6 @@ set(pcsx2GuiHeaders
|
|||
gui/Dialogs/LogOptionsDialog.h
|
||||
gui/Dialogs/ModalPopups.h
|
||||
gui/i18n.h
|
||||
gui/IniInterface.h
|
||||
gui/IsoDropTarget.h
|
||||
gui/MainFrame.h
|
||||
gui/MemoryCardFile.h
|
||||
|
|
|
@ -394,8 +394,6 @@
|
|||
<Unit filename="../gui/ExecutorThread.h" />
|
||||
<Unit filename="../gui/FrameForGS.cpp" />
|
||||
<Unit filename="../gui/GlobalCommands.cpp" />
|
||||
<Unit filename="../gui/IniInterface.cpp" />
|
||||
<Unit filename="../gui/IniInterface.h" />
|
||||
<Unit filename="../gui/IsoDropTarget.cpp" />
|
||||
<Unit filename="../gui/IsoDropTarget.h" />
|
||||
<Unit filename="../gui/MSWstuff.cpp" />
|
||||
|
|
Loading…
Reference in New Issue