mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
18 lines
359 B
Meson
18 lines
359 B
Meson
profiler_headers = [
|
|
'sp-local-profiler.h',
|
|
'sp-profile.h',
|
|
'sp-profiler.h',
|
|
]
|
|
|
|
profiler_sources = [
|
|
'sp-local-profiler.c',
|
|
'sp-profile.c',
|
|
'sp-profiler.c',
|
|
]
|
|
|
|
libsysprof_headers += files(profiler_headers)
|
|
libsysprof_sources += files(profiler_sources)
|
|
|
|
install_headers(profiler_headers,
|
|
subdir: join_paths(libsysprof_header_subdir, 'profiler'))
|