summaryrefslogtreecommitdiff
path: root/source/fswatcher/fswatcher.cpp
blob: 922cc8dca6a23c146112173da16d1224ed422141 (plain)
1
2
3
4
5
6
7
8
9
#if defined( __linux__ )
#   include "fswatcher_linux.cpp"
#elif defined( _WIN32 )
#   include "fswatcher_windows.cpp"
#elif defined( __OSX__ )
#   include "fswatcher_osx.cpp"
#else
#   error "Unsupported platform"
#endif