I found a cross platform library that can monitor a given folder for file changes. It is called SimpleFileWatcher and seems to be easier than the QFileSystemWatcher.
My Problem: I cannot compile the test program of this library in cygwin. My tries to compile it ended in:
$ make
==== Building SimpleDemo ====
FileWatcher.cpp
../../source/FileWatcher.cpp: In constructor »FW::FileWatcher::FileWatcher()«:
../../source/FileWatcher.cpp:43:15: Fehler: expected type-specifier before »FILEWATCHER_IMPL«
../../source/FileWatcher.cpp:43:15: Fehler: »int*« kann nicht nach »FW::FileWatcherImpl*« in assignment umgewandelt werden
../../source/FileWatcher.cpp:43:15: Fehler: expected »;« before »FILEWATCHER_IMPL«
SimpleDemo.make:131: recipe for target `../intermediate/Debug/FileWatcher.o' failed
make[1]: *** [../intermediate/Debug/FileWatcher.o] Error 1
Makefile:17: recipe for target `SimpleDemo' failed
make: *** [SimpleDemo] Error 2
In VS2010 it compiles fine.
Is ynbody here who worked with this library before?
Thank you in advance!
Sebastian