Revert "efl_mono: update meson.build to build efl_mono_model_internal.c"
authorJaehyun Cho <jae_hyun.cho@samsung.com>
Thu, 12 Mar 2020 04:56:45 +0000 (13:56 +0900)
committerJongmin Lee <jm105.lee@samsung.com>
Fri, 13 Mar 2020 01:16:52 +0000 (10:16 +0900)
This reverts commit 29e71bba32743fba111300749714db33d1bd7479.

Change-Id: Iec7f748159579927a49335d6630a0dc8e4d6fdea

src/lib/efl_mono/meson.build

index caba6a055767d76c5980c4929393a09f1878acc5..1c8c2f526c755c7d0e128f61165c7233b00859ce 100644 (file)
@@ -1,34 +1,7 @@
-## TIZEN_ONLY(20190823) Build efl_mono_model_internal.eo and efl_mono_model_internal_child.eo without -Dbindings="mono"
-mono_eo_files = [
-  'efl_mono_model_internal.eo',
-  'efl_mono_model_internal_child.eo'
-]
-
-pub_eo_file_target = []
-
-foreach eo_file : mono_eo_files
-  pub_eo_file_target += custom_target('eolian_gen_' + eo_file,
-    input : eo_file,
-    output : [eo_file + '.h'],
-    depfile : eo_file + '.d',
-    install : false,
-    command : eolian_gen + [ '-I', meson.current_source_dir(), eolian_include_directories,
-                           '-o', 'h:' + join_paths(meson.current_build_dir(), eo_file + '.h'),
-                           '-o', 'c:' + join_paths(meson.current_build_dir(), eo_file + '.c'),
-                           '-o', 'd:' + join_paths(meson.current_build_dir(), eo_file + '.d'),
-                           '-gchd', '@INPUT@'])
-endforeach
-##
-
-## TIZEN_ONLY(20190418) Install libeflcustomexportsmono.so without -Dbindings="mono"
+## TIZEN_ONLY(20190418) Install libeflcustomexportsmono.so without --enable-csharp-bindings
 efl_mono_lib = library('eflcustomexportsmono',
-    [
-      'efl_custom_exports_mono.c',
-      'efl_mono_model_internal.c',
-    ],
-    pub_eo_file_target,
+    'efl_custom_exports_mono.c',
     install : true,
-    include_directories : config_dir + [include_directories('.')],
     dependencies : [eo, eina, ecore],
     version : meson.project_version()
 )