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.
11 lines
412 B
11 lines
412 B
4 years ago
|
e = dependency('enlightenment')
|
||
|
json = dependency('json-c')
|
||
|
|
||
|
module = shared_module('module',
|
||
|
'e_mod_main.c', 'e_mod_config.c',
|
||
|
dependencies : [e, json],
|
||
|
install_dir: install_dir,
|
||
|
install: true,
|
||
|
name_prefix: '',
|
||
|
link_args: '-Wl,--unresolved-symbols=ignore-in-object-files')
|