forked from enlightenment/efl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
507 B
21 lines
507 B
4 years ago
|
|
||
|
bindings = get_option('bindings')
|
||
|
bindings_order = ['luajit', 'cxx', 'mono']
|
||
|
|
||
|
if (bindings.contains('cxx') == false and bindings.contains('mono'))
|
||
|
subdirs = ['eina_cxx', 'eolian_cxx']
|
||
|
subdir(join_paths('cxx', 'eina_cxx'))
|
||
|
inc_dir = []
|
||
|
subdir(join_paths('cxx', 'eolian_cxx'))
|
||
|
eolian_cxx = declare_dependency(
|
||
|
include_directories: inc_dir,
|
||
|
dependencies : eolian
|
||
|
)
|
||
|
endif
|
||
|
|
||
|
foreach binding : bindings_order
|
||
|
if bindings.contains(binding)
|
||
|
subdir(join_paths( binding))
|
||
|
endif
|
||
|
endforeach
|