Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.