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.
12 lines
333 B
12 lines
333 B
fake_gthread_sources = ['fake-gthread.c', 'fake-gthread.h'] |
|
fake_gthread_lib = shared_library( |
|
'gthread-2.0', |
|
sources : fake_gthread_sources, |
|
install : false, |
|
) |
|
|
|
fake_gthread_includes = include_directories('.') |
|
fake_gthread = declare_dependency( |
|
include_directories : fake_gthread_includes, |
|
link_with : fake_gthread_lib, |
|
)
|
|
|