aboutsummaryrefslogtreecommitdiff
path: root/Src/replicant/nu/MessageLoop.h
blob: 5b7548d6ed0b97664a4db15a8e77aa3515bf323b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once
#if defined(__ANDROID__) && defined(__ARM_ARCH_7A__)
#include "android-armv7/MessageLoop.h"
#elif defined(__ANDROID__) && (defined(__ARM_ARCH_5__) || defined(__ARM_ARCH_5TE__))
#include "android-arm/MessageLoop.h"
#elif defined(__ANDROID__) && defined(__i386__)
#include "android-x86/MessageLoop.h"
#elif defined(_WIN32)
#include "win/MessageLoop.h"
#elif   defined(__linux__)
#include "linux/MessageLoop.h"
#elif defined(__APPLE__)
#include "osx/MessageLoop.h"
#else
#error port me!
#endif