blob: fbee450a559da55d6e78ddc58647941f46fd5dae (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
set(DESCRIPTION "E core library, File module")
set(LIBRARIES
ecore
ecore_con
efl
eina
eo
)
set(PUBLIC_HEADERS
Ecore_File.h
)
set(SOURCES
ecore_file.c
ecore_file_download.c
ecore_file_monitor.c
ecore_file_path.c
ecore_file_private.h
)
if(HAVE_SYS_INOTIFY_H)
list(APPEND SOURCES ecore_file_monitor_inotify.c)
elseif(WINDOWS)
list(APPEND SOURCES ecore_file_monitor_win32.c)
else()
list(APPEND SOURCES ecore_file_monitor_poll.c)
endif()
|