mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-01-23 00:15:58 +01:00
Don't install anything when building as subproject
When a project is consuming unity as as subproject, unity headers, static library and pkg config files are installed by `meson install`. This can be fixed by using `meson install --skip-subprojects`, but this must be repeated in all the distros packaging a project. Fixed by disabling install when building as a subproject. Fixes: #661
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
unity_inc += include_directories('.')
|
||||
unity_src += files('unity_fixture.c')
|
||||
|
||||
install_headers(
|
||||
'unity_fixture.h',
|
||||
'unity_fixture_internals.h',
|
||||
subdir: meson.project_name()
|
||||
)
|
||||
if not meson.is_subproject()
|
||||
install_headers(
|
||||
'unity_fixture.h',
|
||||
'unity_fixture_internals.h',
|
||||
subdir: meson.project_name()
|
||||
)
|
||||
endif
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
unity_inc += include_directories('.')
|
||||
unity_src += files('unity_memory.c')
|
||||
|
||||
install_headers(
|
||||
'unity_memory.h',
|
||||
subdir: meson.project_name()
|
||||
)
|
||||
if not meson.is_subproject()
|
||||
install_headers(
|
||||
'unity_memory.h',
|
||||
subdir: meson.project_name()
|
||||
)
|
||||
endif
|
||||
|
||||
Reference in New Issue
Block a user