@@ -56,9 +56,13 @@ set(headers
56
56
${include_path} /FileIterator.h
57
57
${include_path} /FileVisitor.h
58
58
${include_path} /FunctionalFileVisitor.h
59
+ ${include_path} /FileWatcher.h
60
+ ${include_path} /FileEventHandler.h
61
+ ${include_path} /FunctionalFileEventHandler.h
59
62
${include_path} /AbstractFileSystem.h
60
63
${include_path} /AbstractFileHandleBackend.h
61
64
${include_path} /AbstractFileIteratorBackend.h
65
+ ${include_path} /AbstractFileWatcherBackend.h
62
66
${include_path} /InputStream.h
63
67
${include_path} /OutputStream.h
64
68
${include_path} /LoginCredentials.h
@@ -81,9 +85,13 @@ set(sources
81
85
${source_path} /FileIterator.cpp
82
86
${source_path} /FileVisitor.cpp
83
87
${source_path} /FunctionalFileVisitor.cpp
88
+ ${source_path} /FileWatcher.cpp
89
+ ${source_path} /FileEventHandler.cpp
90
+ ${source_path} /FunctionalFileEventHandler.cpp
84
91
${source_path} /AbstractFileSystem.cpp
85
92
${source_path} /AbstractFileHandleBackend.cpp
86
93
${source_path} /AbstractFileIteratorBackend.cpp
94
+ ${source_path} /AbstractFileWatcherBackend.cpp
87
95
${source_path} /InputStream.cpp
88
96
${source_path} /OutputStream.cpp
89
97
${source_path} /LoginCredentials.cpp
@@ -98,6 +106,26 @@ set(sources
98
106
${source_path} /${localfs} /LocalFileIterator.cpp
99
107
)
100
108
109
+ if ("${CMAKE_SYSTEM_NAME} " MATCHES "Linux" )
110
+ set (headers ${headers}
111
+ ${include_path} /linux/LocalFileWatcher.h
112
+ )
113
+
114
+ set (sources ${sources}
115
+ ${source_path} /linux/LocalFileWatcher.cpp
116
+ )
117
+ endif ()
118
+
119
+ if ("${CMAKE_SYSTEM_NAME} " MATCHES "Windows" )
120
+ set (headers ${headers}
121
+ ${include_path} /windows/LocalFileWatcher.h
122
+ )
123
+
124
+ set (sources ${sources}
125
+ ${source_path} /windows/LocalFileWatcher.cpp
126
+ )
127
+ endif ()
128
+
101
129
if (OPTION_BUILD_SSH_BACKEND)
102
130
set (headers ${headers}
103
131
${include_path} /ssh/SshFileSystem.h
@@ -114,7 +142,7 @@ if (OPTION_BUILD_SSH_BACKEND)
114
142
${source_path} /ssh/SshInputStreamBuffer.cpp
115
143
${source_path} /ssh/SshOutputStreamBuffer.cpp
116
144
)
117
- endif ()
145
+ endif ()
118
146
119
147
# Group source files
120
148
set (header_group "Header Files (API)" )
0 commit comments