Mercurial > minori
comparison dep/animia/CMakeLists.txt @ 153:bd439dd6ffc5
*: make win stuff actually work, rename bsd.cc to xnu.cc
It's been OS X only for ages, and these functions are different between
most BSDs anyway
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Wed, 15 Nov 2023 13:28:18 -0500 |
parents | 8700806c2cc2 |
children | d43d68408d3c |
comparison
equal
deleted
inserted
replaced
152:8700806c2cc2 | 153:bd439dd6ffc5 |
---|---|
13 if(LINUX) | 13 if(LINUX) |
14 list(APPEND SRC_FILES | 14 list(APPEND SRC_FILES |
15 # linux | 15 # linux |
16 src/fd/linux.cc | 16 src/fd/linux.cc |
17 ) | 17 ) |
18 elseif(UNIX) # this won't run on Linux | 18 elseif(MACOSX) # this won't run on Linux |
19 list(APPEND SRC_FILES | 19 list(APPEND SRC_FILES |
20 # bsd | 20 # xnu stuff |
21 src/fd/bsd.cc | 21 src/fd/xnu.cc |
22 ) | 22 ) |
23 elseif(WIN32) | 23 elseif(WIN32) |
24 list(APPEND SRC_FILES | 24 list(APPEND SRC_FILES |
25 # win32 | 25 # win32 |
26 src/fd/win32.cc | 26 src/fd/win32.cc |