summaryrefslogtreecommitdiff
path: root/source/fswatcher/fswatcher.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/fswatcher/fswatcher.cpp')
-rw-r--r--source/fswatcher/fswatcher.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/fswatcher/fswatcher.cpp b/source/fswatcher/fswatcher.cpp
new file mode 100644
index 0000000..922cc8d
--- /dev/null
+++ b/source/fswatcher/fswatcher.cpp
@@ -0,0 +1,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