diff options
author | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2020-01-04 15:08:08 +0100 |
---|---|---|
committer | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2020-03-08 10:59:22 +0100 |
commit | 40a62ddf94f590b2e79caf63eb399d9bc257b216 (patch) | |
tree | c97eec309d851b8954c7d4c7ceef53c249dbb8bc /src/lib/eina/meson.build | |
parent | f6464b0deb6de2dbd877916413ac1178b0145c78 (diff) |
eina: introduce Eina_Abstract_Content
A little abstraction to have abstract data content bound to a type.
Reviewed-by: Cedric BAIL <cedric.bail@free.fr>
Reviewed-by: Xavi Artigas <xavierartigas@yahoo.es>
Differential Revision: https://phab.enlightenment.org/D11018
Diffstat (limited to '')
-rw-r--r-- | src/lib/eina/meson.build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/eina/meson.build b/src/lib/eina/meson.build index 97e1669c4f..d3d30fcf43 100644 --- a/src/lib/eina/meson.build +++ b/src/lib/eina/meson.build | |||
@@ -107,6 +107,7 @@ public_sub_headers = [ | |||
107 | 'eina_freeq.h', | 107 | 'eina_freeq.h', |
108 | 'eina_slstr.h', | 108 | 'eina_slstr.h', |
109 | 'eina_vpath.h', | 109 | 'eina_vpath.h', |
110 | 'eina_abstract_content.h' | ||
110 | ] | 111 | ] |
111 | 112 | ||
112 | public_headers = [ | 113 | public_headers = [ |
@@ -188,7 +189,8 @@ sources = [ | |||
188 | 'eina_freeq.c', | 189 | 'eina_freeq.c', |
189 | 'eina_slstr.c', | 190 | 'eina_slstr.c', |
190 | 'eina_vpath.c', | 191 | 'eina_vpath.c', |
191 | 'eina_vpath_xdg.c' | 192 | 'eina_vpath_xdg.c', |
193 | 'eina_abstract_content.c', | ||
192 | ] | 194 | ] |
193 | 195 | ||
194 | if sys_windows == true | 196 | if sys_windows == true |