From 8ccf6ddb7ecfd78027b159701ad2e9babc18a51b Mon Sep 17 00:00:00 2001 From: Jade Lovelace Date: Wed, 31 Jul 2024 15:49:21 -0700 Subject: [PATCH] meson repro --- meson.build | 2 ++ subprojects/subproj/lib.c | 0 subprojects/subproj/meson.build | 4 ++++ 3 files changed, 6 insertions(+) create mode 100644 meson.build create mode 100644 subprojects/subproj/lib.c create mode 100644 subprojects/subproj/meson.build 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)