The Meson Build System
http://mesonbuild.com/
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.
13 lines
349 B
13 lines
349 B
get_prgname_sources = ['get-prgname.c', 'get-prgname.h'] |
|
get_prgname_lib = shared_library( |
|
'get-prgname', |
|
sources : get_prgname_sources, |
|
dependencies : [glib], |
|
install : false, |
|
) |
|
|
|
get_prgname_includes = include_directories('.') |
|
get_prgname = declare_dependency( |
|
include_directories : get_prgname_includes, |
|
link_with : get_prgname_lib, |
|
)
|
|
|