mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-24 19:27:27 +00:00
Merge pull request #2959 from rohit-n/build-pch
Fix building with PCH disabled.
This commit is contained in:
commit
a26cac87fc
5 changed files with 18 additions and 0 deletions
|
@ -4,6 +4,10 @@
|
|||
|
||||
#include <cstdio>
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#include "Common/Logging/ConsoleListener.h"
|
||||
|
||||
ConsoleListener::ConsoleListener()
|
||||
|
|
|
@ -6,6 +6,10 @@
|
|||
#include "Common/CommonTypes.h"
|
||||
#include "Common/Thread.h"
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#ifdef __APPLE__
|
||||
#include <mach/mach.h>
|
||||
#elif defined BSD4_4 || defined __FreeBSD__
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue