mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
meson: remove unnecessary argument nesting
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
install_static = not meson.is_subproject() and get_option('install-static')
|
||||
|
||||
libsysprof_capture_headers = files([
|
||||
libsysprof_capture_headers = files(
|
||||
'sysprof-address.h',
|
||||
'sysprof-clock.h',
|
||||
'sysprof-capture-condition.h',
|
||||
@ -13,17 +13,17 @@ libsysprof_capture_headers = files([
|
||||
'sysprof-platform.h',
|
||||
'sysprof-capture.h',
|
||||
'sysprof-version-macros.h',
|
||||
])
|
||||
)
|
||||
|
||||
if not meson.is_subproject()
|
||||
install_headers(libsysprof_capture_headers, subdir: sysprof_header_subdir)
|
||||
endif
|
||||
|
||||
mapped_ring_buffer_sources = files([
|
||||
mapped_ring_buffer_sources = files(
|
||||
'mapped-ring-buffer.c',
|
||||
])
|
||||
)
|
||||
|
||||
libsysprof_capture_sources = files([
|
||||
libsysprof_capture_sources = files(
|
||||
'sysprof-address.c',
|
||||
'sysprof-capture-condition.c',
|
||||
'sysprof-capture-cursor.c',
|
||||
@ -34,7 +34,7 @@ libsysprof_capture_sources = files([
|
||||
'sysprof-collector.c',
|
||||
'sysprof-clock.c',
|
||||
'sysprof-platform.c',
|
||||
])
|
||||
)
|
||||
|
||||
configure_file(
|
||||
input: 'sysprof-version.h.in',
|
||||
|
||||
Reference in New Issue
Block a user