diff options
Diffstat (limited to 'src/lib/ecore_file/CMakeLists.txt')
-rw-r--r-- | src/lib/ecore_file/CMakeLists.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/lib/ecore_file/CMakeLists.txt b/src/lib/ecore_file/CMakeLists.txt new file mode 100644 index 0000000000..fbee450a55 --- /dev/null +++ b/src/lib/ecore_file/CMakeLists.txt | |||
@@ -0,0 +1,29 @@ | |||
1 | set(DESCRIPTION "E core library, File module") | ||
2 | |||
3 | set(LIBRARIES | ||
4 | ecore | ||
5 | ecore_con | ||
6 | efl | ||
7 | eina | ||
8 | eo | ||
9 | ) | ||
10 | |||
11 | set(PUBLIC_HEADERS | ||
12 | Ecore_File.h | ||
13 | ) | ||
14 | |||
15 | set(SOURCES | ||
16 | ecore_file.c | ||
17 | ecore_file_download.c | ||
18 | ecore_file_monitor.c | ||
19 | ecore_file_path.c | ||
20 | ecore_file_private.h | ||
21 | ) | ||
22 | |||
23 | if(HAVE_SYS_INOTIFY_H) | ||
24 | list(APPEND SOURCES ecore_file_monitor_inotify.c) | ||
25 | elseif(WINDOWS) | ||
26 | list(APPEND SOURCES ecore_file_monitor_win32.c) | ||
27 | else() | ||
28 | list(APPEND SOURCES ecore_file_monitor_poll.c) | ||
29 | endif() | ||