summaryrefslogtreecommitdiff
path: root/src/lib/ecore_fb
diff options
context:
space:
mode:
authorMarcel Hollerbach <mail@marcel-hollerbach.de>2018-08-12 15:26:29 +0200
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2018-10-02 17:22:50 +0200
commit46d464e5bfc10398461a33a2256c1c58d509dd1a (patch)
tree8c1a9272c05f14033a4430bc122632461bd73608 /src/lib/ecore_fb
parent70ecf1056bb4be5a68b63044f938ccc2fe0a58c0 (diff)
downloadefl-46d464e5bfc10398461a33a2256c1c58d509dd1a.tar.gz
here comes meson
a new shiny buildtool that currently completes in the total of ~ 4 min.. 1 min. conf time 2:30 min. build time Where autotools takes: 1:50 min. conf time 3:40 min. build time. meson was taken because it went quite good for enlightenment, and is a traction gaining system that is also used by other mayor projects. Additionally, the DSL that is defined my meson makes the configuration of the builds a lot easier to read. Further informations can be gathered from the README.meson Right now, bindings & windows support are missing. It is highly recommented to use meson 0.48 due to optimizations in meson that reduced the time the meson call would need. Co-authored-by: Mike Blumenkrantz <zmike@samsung.com> Differential Revision: https://phab.enlightenment.org/D7012 Depends on D7011
Diffstat (limited to 'src/lib/ecore_fb')
-rw-r--r--src/lib/ecore_fb/meson.build34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/lib/ecore_fb/meson.build b/src/lib/ecore_fb/meson.build
new file mode 100644
index 0000000000..0bcf11e3c8
--- /dev/null
+++ b/src/lib/ecore_fb/meson.build
@@ -0,0 +1,34 @@
+ecore_fb_deps = [ecore, ecore_input]
+ecore_fb_pub_deps = [eina]
+
+ecore_fb_header_src = [
+ 'Ecore_Fb.h'
+]
+
+ecore_fb_src = [
+ 'ecore_fb.c',
+ 'ecore_fb_li.c',
+ 'ecore_fb_ts.c',
+ 'ecore_fb_vt.c',
+ 'ecore_fb_keytable.h',
+ 'ecore_fb_private.h'
+]
+
+ecore_fb_lib = library('ecore_fb',
+ ecore_fb_src, pub_eo_file_target,
+ dependencies: ecore_fb_pub_deps + ecore_fb_deps,
+ include_directories : config_dir,
+ install: true,
+ version : meson.project_version()
+)
+
+ecore_fb = declare_dependency(
+ include_directories: [include_directories('.')],
+ link_with: ecore_fb_lib,
+ sources : pub_eo_file_target + priv_eo_file_target,
+ dependencies: ecore_fb_pub_deps,
+)
+
+install_headers(ecore_fb_header_src,
+ install_dir : dir_package_include,
+)