diff options
author | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2020-05-10 14:41:57 +0200 |
---|---|---|
committer | Stefan Schmidt <s.schmidt@samsung.com> | 2020-05-27 11:06:46 +0200 |
commit | 8e3606698eb439eecd7302a885504365aca7e564 (patch) | |
tree | 6bb354ae72ab277548fafaab00a52aeaac5e61bb /src/lib/ecore_input_evas/meson.build | |
parent | 2d105a7e597a38a31ea88fefc02ac84b8b6e5543 (diff) |
refactor build
libraries are split into deps, external deps, and pub deps.
Evas engines are refactored to use the predefined engine deps.
this is preparation work for efl-one.
Reviewed-by: Stefan Schmidt <stefan@datenfreihafen.org>
Differential Revision: https://phab.enlightenment.org/D11806
Diffstat (limited to '')
-rw-r--r-- | src/lib/ecore_input_evas/meson.build | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/ecore_input_evas/meson.build b/src/lib/ecore_input_evas/meson.build index ee2516bfbf..612a931c16 100644 --- a/src/lib/ecore_input_evas/meson.build +++ b/src/lib/ecore_input_evas/meson.build | |||
@@ -1,21 +1,22 @@ | |||
1 | ecore_input_evas_deps = [ecore, ecore_input, evas] | 1 | ecore_input_evas_deps = [ecore, ecore_input, evas] |
2 | ecore_input_evas_pub_deps = [eina, evas] | 2 | ecore_input_evas_pub_deps = [eina, evas] |
3 | ecore_input_evas_ext_deps = [] | ||
3 | pub_eo_file_target = [] | 4 | pub_eo_file_target = [] |
4 | 5 | ||
5 | ecore_input_evas_header_src = [ | 6 | ecore_input_evas_header_src = [ |
6 | 'Ecore_Input_Evas.h' | 7 | 'Ecore_Input_Evas.h' |
7 | ] | 8 | ] |
8 | 9 | ||
9 | ecore_input_evas_src = [ | 10 | ecore_input_evas_src = files([ |
10 | 'ecore_input_evas.c', | 11 | 'ecore_input_evas.c', |
11 | 'ecore_input_evas_private.h', | 12 | 'ecore_input_evas_private.h', |
12 | ] | 13 | ]) |
13 | 14 | ||
14 | 15 | ||
15 | ecore_input_evas_lib = library('ecore_input_evas', | 16 | ecore_input_evas_lib = library('ecore_input_evas', |
16 | ecore_input_evas_src, pub_eo_file_target, | 17 | ecore_input_evas_src, pub_eo_file_target, |
17 | c_args : package_c_args, | 18 | c_args : package_c_args, |
18 | dependencies: ecore_input_evas_pub_deps + ecore_input_evas_deps, | 19 | dependencies: [ecore_input_evas_pub_deps, ecore_input_evas_deps, ecore_input_evas_ext_deps], |
19 | include_directories : config_dir, | 20 | include_directories : config_dir, |
20 | install: true, | 21 | install: true, |
21 | version : meson.project_version() | 22 | version : meson.project_version() |