mirror of
https://github.com/cemu-project/Cemu.git
synced 2024-11-25 10:36:55 +01:00
f51a51df3b
Improved, fixed and streamlined cmake files. Optionally use system libraries instead of vcpkg (-DENABLE_VCPKG=OFF)
18 lines
374 B
C++
18 lines
374 B
C++
#pragma once
|
|
|
|
#include <boost/predef/os.h>
|
|
#include <cstdint>
|
|
|
|
#if BOOST_OS_WINDOWS
|
|
#include "Common/windows/platform.h"
|
|
#elif BOOST_OS_LINUX
|
|
#include <byteswap.h>
|
|
#include <X11/Xlib.h>
|
|
#include <X11/extensions/Xrender.h>
|
|
#include <X11/Xutil.h>
|
|
#include "Common/unix/platform.h"
|
|
#elif BOOST_OS_MACOS
|
|
#include <libkern/OSByteOrder.h>
|
|
#include "Common/unix/platform.h"
|
|
#endif
|