emcrisostomo / fswatch

A cross-platform file change monitor with multiple backends: Apple OS X File System Events, *BSD kqueue, Solaris/Illumos File Events Notification, Linux inotify, Microsoft Windows and a stat()-based backend.
https://emcrisostomo.github.io/fswatch/
GNU General Public License v3.0
5.06k stars 330 forks source link

Is there any detail instruction about building this project on windows system? #211

Open jren2017 opened 6 years ago

jren2017 commented 6 years ago

checking whether lstat correctly handles trailing slash... no checking for modf... yes checking for realpath... no configure: error: The realpath function cannot be found.

Can you help give more instruction?

brechtsanders commented 6 years ago

See ticket 214 if you're using MinGW. FYI realpath on Windows can be emulated with:

#define realpath(N,R) _fullpath((R),(N),_MAX_PATH)