diff options
author | Marcel Hollerbach <marcel@osg.samsung.com> | 2017-12-12 11:22:47 +0100 |
---|---|---|
committer | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2018-12-20 20:07:26 +0100 |
commit | e43f090265f0e42dc1a6d9f2691e0b84971209fa (patch) | |
tree | 2f7ab6e18a10b7a4363f53fb270997f07f07cb31 /src/lib/ecore_file/CMakeLists.txt | |
parent | 6fcc3a56d84901ad077a801567a590451263078d (diff) |
cmake: remove!
This build was never complete and also was not maintained probebly.
It is also dropped in favour of meson which is cool, merged, works & is fast.
Differential Revision: https://phab.enlightenment.org/D7010
Diffstat (limited to '')
-rw-r--r-- | src/lib/ecore_file/CMakeLists.txt | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/lib/ecore_file/CMakeLists.txt b/src/lib/ecore_file/CMakeLists.txt deleted file mode 100644 index fbee450a55..0000000000 --- a/src/lib/ecore_file/CMakeLists.txt +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
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() | ||