create tests/ref-fusion meson.build 98/264298/1
authordyamy-lee <dyamy.lee@samsung.com>
Wed, 15 Sep 2021 07:31:06 +0000 (16:31 +0900)
committerSung-Jin Park <sj76.park@samsung.com>
Wed, 15 Sep 2021 12:06:11 +0000 (21:06 +0900)
Change-Id: Ia96c5d2418a0dfc5a361abea3cee2363eed59d9d

tests/ref-fusion/meson.build [new file with mode: 0644]

diff --git a/tests/ref-fusion/meson.build b/tests/ref-fusion/meson.build
new file mode 100644 (file)
index 0000000..1bea49d
--- /dev/null
@@ -0,0 +1,18 @@
+ref_fusion_tests_srcs = [
+       'main.cpp',
+       'mmi-ref-fusion-tests.cpp'
+       ]
+
+gmock_dep = dependency('gmock', method : 'pkg-config')
+ecore_dep = dependency('ecore', method : 'pkg-config')
+
+ref_fusion_tests_rpath = ('/' + get_option('libdir') + '/fusion/')
+
+executable(
+       'ref_fusion-tests',
+       ref_fusion_tests_srcs,
+       dependencies : [mmimgr_declared_dep, reffusion_declared_dep, gmock_dep, ecore_dep],
+       install_rpath: ref_fusion_tests_rpath,
+       install_dir : mmi_manager_prefix_bindir,
+       install : true
+       )