commit 8ccf6ddb7ecfd78027b159701ad2e9babc18a51b Author: Jade Lovelace Date: Wed Jul 31 15:49:21 2024 -0700 meson repro diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..8dc7ce6 --- /dev/null +++ b/meson.build @@ -0,0 +1,2 @@ +project('repro') +subproject('subproj') diff --git a/subprojects/subproj/lib.c b/subprojects/subproj/lib.c new file mode 100644 index 0000000..e69de29 diff --git a/subprojects/subproj/meson.build b/subprojects/subproj/meson.build new file mode 100644 index 0000000..bb52e26 --- /dev/null +++ b/subprojects/subproj/meson.build @@ -0,0 +1,4 @@ +project('lix-clang-tidy', ['c']) + +sources = files('lib.c') +module = shared_module('lix-clang-tidy', sources, install : true, build_by_default : false)