diff options
author | Subhransu Mohanty <sub.mohanty@samsung.com> | 2016-10-13 17:09:39 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2016-10-13 17:09:39 +0900 |
commit | 45b103eb0a3a91238f6ee1d66ccb2614925a2e64 (patch) | |
tree | 1d8011321a05170eddd9d2e92f2e8ca100abff5c /src/lib/evas/file/evas_module.c | |
parent | c5ffad3731e91bddc2f524b5272f99b7f130f98b (diff) |
evas/module: add a new module in vg_loader for eet
Reviewers: jpeg
Subscribers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D4347
Diffstat (limited to 'src/lib/evas/file/evas_module.c')
-rw-r--r-- | src/lib/evas/file/evas_module.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/evas/file/evas_module.c b/src/lib/evas/file/evas_module.c index f8d2787ccc..ea4f5c2739 100644 --- a/src/lib/evas/file/evas_module.c +++ b/src/lib/evas/file/evas_module.c @@ -130,6 +130,7 @@ EVAS_EINA_STATIC_MODULE_DEFINE(engine, software_x11); #endif #if !EVAS_MODULE_NO_VG_LOADERS +EVAS_EINA_STATIC_MODULE_DEFINE(vg_loader, eet); EVAS_EINA_STATIC_MODULE_DEFINE(vg_loader, svg); #endif @@ -203,6 +204,9 @@ static const struct { #ifdef EVAS_STATIC_BUILD_VG_SVG EVAS_EINA_STATIC_MODULE_USE(vg_loader, svg), #endif +#ifdef EVAS_STATIC_BUILD_VG_EET + EVAS_EINA_STATIC_MODULE_USE(vg_loader, eet), +#endif #endif #if !EVAS_MODULE_NO_IMAGE_LOADERS #ifdef EVAS_STATIC_BUILD_BMP |