efl

Форк
0
/
meson.build 
28 строк · 746.0 Байт
1

2
bindings = get_option('bindings')
3
bindings_order = ['lua', 'cxx', 'mono']
4

5
if (get_option('dotnet') and not bindings.contains('mono'))
6
  message('dotnet support requires the C# bindings')
7
  bindings += ['mono']
8
endif
9

10
if (bindings.contains('cxx') == false and bindings.contains('mono'))
11
  subdirs = ['eina_cxx', 'eolian_cxx']
12
  subdir(join_paths('cxx', 'eina_cxx'))
13
  inc_dir = []
14
  subdir(join_paths('cxx', 'eolian_cxx'))
15
  eolian_cxx = declare_dependency(
16
    include_directories: inc_dir,
17
    dependencies : eolian
18
  )
19
endif
20

21
if bindings.contains('lua') and not have_elua
22
  error('Elua is necessary for Lua bindings')
23
endif
24

25
foreach binding : bindings_order
26
  if bindings.contains(binding)
27
    subdir(join_paths( binding))
28
  endif
29
endforeach
30

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.