diff options
author | Daniel Hirt <daniel.hirt@samsung.com> | 2016-11-03 17:45:42 +0200 |
---|---|---|
committer | Daniel Hirt <daniel.hirt@samsung.com> | 2016-11-10 18:23:21 +0200 |
commit | 03856913c2ec7133e39d7144129f539c5fa346c3 (patch) | |
tree | 0c886b5de113fde65a28f872f33ca62ab29fd77c /src/Makefile_Edje.am | |
parent | ada0c1bba59eca7f8fd6ce2398f407cb84bb7c7c (diff) |
Edje containers: split logic
This splits the current Efl.Part implementation for the edje container
objects. These are now split to a edje_part.c, edje_part_helper.h and
separate sources for swallow, box and table.
It's going to make things a bit easier for porting the rest of the
logic.
Diffstat (limited to '')
-rw-r--r-- | src/Makefile_Edje.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile_Edje.am b/src/Makefile_Edje.am index 907c927..f6921bc 100644 --- a/src/Makefile_Edje.am +++ b/src/Makefile_Edje.am | |||
@@ -92,8 +92,10 @@ lib/edje/edje_textblock_styles.c \ | |||
92 | lib/edje/edje_util.c \ | 92 | lib/edje/edje_util.c \ |
93 | lib/edje/edje_var.c \ | 93 | lib/edje/edje_var.c \ |
94 | lib/edje/edje_signal.c \ | 94 | lib/edje/edje_signal.c \ |
95 | lib/edje/edje_containers.c | 95 | lib/edje/edje_part.c \ |
96 | 96 | lib/edje/edje_part_swallow.c \ | |
97 | lib/edje/edje_part_table.c \ | ||
98 | lib/edje/edje_part_box.c | ||
97 | 99 | ||
98 | lib_edje_libedje_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl $(EDJE_COMMON_CPPFLAGS) | 100 | lib_edje_libedje_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl $(EDJE_COMMON_CPPFLAGS) |
99 | lib_edje_libedje_la_LIBADD = @EDJE_LIBS@ @EDJE_LUA_LIBS@ | 101 | lib_edje_libedje_la_LIBADD = @EDJE_LIBS@ @EDJE_LUA_LIBS@ |