Results 5 comments of kamyFC

How did you compile it? I get error when i run Make src/client/input/sdl.c:30:10: fatal error: 'SDL2/SDL.h' file not found

Hi @jdolan Do we need SDL2 or 1.2 I installed SDL2 via Brew - then added the path to INCLUDE in the MakeFile ``` ifeq ($(PLATFORM),darwin) CFLAGS += -D__APPLE__ -I/opt/local/include...

Cool thanks @jdolan I added the 1.2 version's "SDL.framework" file to /Library/Frameworks and added the path -I/Library/Frameworks/SDL.framework/Versions/A/Headers to CFLAGS and it compiled fine. But am getting linker errors ``` Undefined...

@eonist I tried your cool solution and i'm able a) to monitor multiple directories b) Used background thread and NSOperations. Works fine c) Changes in subdirectories are also detected. Huge....

Hey @eonist I totally appreciate the reply. I just do a file exists as you suggested and if it does not exist, its removed. Cheers!