mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Dolphin now builds on Linux with only Source/Core as include dir
This commit is contained in:
parent
dc1db82f70
commit
362dec9c7c
@ -474,18 +474,6 @@ endif()
|
||||
#
|
||||
include_directories(Source/Core)
|
||||
|
||||
# TODO(delroth): Remove when relative-includes is done.
|
||||
include_directories(Source/Core/AudioCommon)
|
||||
include_directories(Source/Core/Common)
|
||||
include_directories(Source/Core/Core)
|
||||
include_directories(Source/Core/DebuggerUICommon)
|
||||
include_directories(Source/Core/DebuggerWX)
|
||||
include_directories(Source/Core/DiscIO)
|
||||
include_directories(Source/Core/DolphinWX)
|
||||
include_directories(Source/Core/InputCommon)
|
||||
include_directories(Source/Core/VideoCommon)
|
||||
include_directories(Source/Core/VideoUICommon)
|
||||
|
||||
########################################
|
||||
# Process externals and setup their include directories
|
||||
#
|
||||
|
@ -4,7 +4,6 @@
|
||||
|
||||
#include "Common/Common.h"
|
||||
#include "Common/Hash.h"
|
||||
|
||||
#include "Core/Host.h"
|
||||
#include "Core/ConfigManager.h"
|
||||
#include "Core/DSP/DSPAnalyzer.h"
|
||||
@ -14,8 +13,7 @@
|
||||
#include "Core/HW/DSPLLE/DSPSymbols.h"
|
||||
#include "Core/HW/DSPLLE/DSPLLETools.h"
|
||||
#include "Core/PowerPC/PowerPC.h"
|
||||
|
||||
#include "OnScreenDisplay.h"
|
||||
#include "VideoCommon/OnScreenDisplay.h"
|
||||
|
||||
// The user of the DSPCore library must supply a few functions so that the
|
||||
// emulation core can access the environment it runs in. If the emulation
|
||||
|
@ -3,20 +3,19 @@
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "Core/ConfigManager.h"
|
||||
#include "Core/CoreTiming.h"
|
||||
#include "Core/Movie.h"
|
||||
#include "Core/HW/EXI.h"
|
||||
#include "Core/HW/EXI_Channel.h"
|
||||
#include "Core/HW/EXI_Device.h"
|
||||
#include "Core/HW/MMIO.h"
|
||||
#include "Core/HW/ProcessorInterface.h"
|
||||
#include "Core/PowerPC/PowerPC.h"
|
||||
|
||||
#define EXI_READ 0
|
||||
#define EXI_WRITE 1
|
||||
#define EXI_READWRITE 2
|
||||
|
||||
#include "ProcessorInterface.h"
|
||||
#include "../PowerPC/PowerPC.h"
|
||||
#include "CoreTiming.h"
|
||||
|
||||
CEXIChannel::CEXIChannel(u32 ChannelId) :
|
||||
m_DMAMemoryAddress(0),
|
||||
m_DMALength(0),
|
||||
|
@ -8,6 +8,7 @@
|
||||
#include "Common/CommonPaths.h"
|
||||
#include "Common/FileUtil.h"
|
||||
#include "Common/SettingsHandler.h"
|
||||
#include "Common/StringUtil.h"
|
||||
|
||||
#include "Core/ConfigManager.h"
|
||||
#include "Core/ec_wii.h"
|
||||
@ -457,7 +458,6 @@ bool CWII_IPC_HLE_Device_net_wd_command::Close(u32 CommandAddress, bool Force)
|
||||
// This is just for debugging / playing around.
|
||||
// There really is no reason to implement wd unless we can bend it such that
|
||||
// we can talk to the DS.
|
||||
#include "StringUtil.h"
|
||||
bool CWII_IPC_HLE_Device_net_wd_command::IOCtlV(u32 CommandAddress)
|
||||
{
|
||||
u32 return_value = 0;
|
||||
|
@ -204,9 +204,9 @@ bool AVIDump::SetVideoFormat()
|
||||
|
||||
#else
|
||||
|
||||
#include "FileUtil.h"
|
||||
#include "StringUtil.h"
|
||||
#include "Log.h"
|
||||
#include "Common/FileUtil.h"
|
||||
#include "Common/Log.h"
|
||||
#include "Common/StringUtil.h"
|
||||
|
||||
extern "C" {
|
||||
#include <libavcodec/avcodec.h>
|
||||
|
@ -2,24 +2,24 @@
|
||||
// Licensed under GPLv2
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "Common.h"
|
||||
#include "VideoCommon.h"
|
||||
#include "VideoConfig.h"
|
||||
#include "MathUtil.h"
|
||||
#include "Thread.h"
|
||||
#include "Atomic.h"
|
||||
#include "Fifo.h"
|
||||
#include "ChunkFile.h"
|
||||
#include "CommandProcessor.h"
|
||||
#include "PixelEngine.h"
|
||||
#include "CoreTiming.h"
|
||||
#include "ConfigManager.h"
|
||||
#include "HW/ProcessorInterface.h"
|
||||
#include "HW/GPFifo.h"
|
||||
#include "HW/Memmap.h"
|
||||
#include "HW/SystemTimers.h"
|
||||
#include "Core.h"
|
||||
#include "HW/MMIO.h"
|
||||
#include "Common/Common.h"
|
||||
#include "Common/MathUtil.h"
|
||||
#include "Common/Thread.h"
|
||||
#include "Common/Atomic.h"
|
||||
#include "Common/ChunkFile.h"
|
||||
#include "Core/ConfigManager.h"
|
||||
#include "Core/Core.h"
|
||||
#include "Core/CoreTiming.h"
|
||||
#include "Core/HW/GPFifo.h"
|
||||
#include "Core/HW/Memmap.h"
|
||||
#include "Core/HW/MMIO.h"
|
||||
#include "Core/HW/ProcessorInterface.h"
|
||||
#include "Core/HW/SystemTimers.h"
|
||||
#include "VideoCommon/CommandProcessor.h"
|
||||
#include "VideoCommon/Fifo.h"
|
||||
#include "VideoCommon/PixelEngine.h"
|
||||
#include "VideoCommon/VideoCommon.h"
|
||||
#include "VideoCommon/VideoConfig.h"
|
||||
|
||||
namespace CommandProcessor
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user