Mercurial > minori
view dep/animia/src/fd.cc @ 179:9c4645100fec
osx: clean up includes, we do not need cocoa
what we *do* need is the very basics that animia already depends on anyway.
these are basically guaranteed to be on any macos system, making it fairly portable
now... I haven't tested this :) I don't have a macos machine right now...
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Mon, 04 Dec 2023 12:03:36 -0500 |
parents | 54c5d80a737e |
children | bc1ae1810855 8f6f8dd2eb23 |
line wrap: on
line source
#include "animia/fd.h" #ifdef WIN32 # include "animia/fd/win32.h" #elif defined(LINUX) || defined(FREEBSD) # include "animia/fd/proc.h" #elif defined(MACOSX) # include "animia/fd/xnu.h" #elif defined(LIBUTIL) # include "animia/fd/libutil.h" #endif namespace animia::internal { #ifdef WIN32 win32::Win32FdTools os_fd; #elif defined(LINUX) || defined(FREEBSD) proc::ProcFdTools os_fd; #elif defined(MACOSX) xnu::XnuFdTools os_fd; #elif defined(LIBUTIL) libutil::LibutilFdTools os_fd; #else BaseFdTools os_fd; #endif BaseFdTools& fd = os_fd; } // namespace animia::internal