fswatch
fswatch copied to clipboard
Is there any detail instruction about building this project on windows system?
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?
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)