mmi-manager: set export_dynamic to true for modules(.so) of mmi-manager 89/264089/1
authorSung-Jin Park <sj76.park@samsung.com>
Tue, 7 Sep 2021 14:35:44 +0000 (23:35 +0900)
committerSung-Jin Park <sj76.park@samsung.com>
Mon, 13 Sep 2021 11:26:27 +0000 (20:26 +0900)
For shared module to be able to refer to functions and variables defined in
mmi-manager executable, we set export_dynamic to 'true' in meson.build file.

Change-Id: I7b66b964e7b4281a24e51ccb303cf45ebbc5ed26
Signed-off-by: Sung-Jin Park <sj76.park@samsung.com>
src/meson.build

index 260e8f0..71fca79 100644 (file)
@@ -64,6 +64,7 @@ executable('mmi-manager',
        mmi_manager_srcs,
        dependencies : [mmi_manager_deps],
        install_dir : mmi_manager_prefix_bindir,
+       export_dynamic : true,
        install : true
        )