Adding initial stage of file system watcher
diff --git a/filesystemwatcher/main.cpp b/filesystemwatcher/main.cpp
new file mode 100644
index 0000000..dc2bc85
--- /dev/null
+++ b/filesystemwatcher/main.cpp
@@ -0,0 +1,13 @@
+#include "filesystemwatcher.h"
+#include <QApplication>
+
+int main(int argc, char *argv[])
+{
+    QApplication app(argc, argv);
+
+    // invoke file system watcher on specified path
+    filesystemwatcher watcher("/Users/jared/Desktop");
+    watcher.show();
+    
+    return app.exec();
+}