diff options
| author | Xavier Claessens <xavier.claessens@collabora.com> | 2022-03-02 20:04:15 -0500 |
|---|---|---|
| committer | Xavier Claessens <xclaesse@gmail.com> | 2022-03-09 10:38:28 -0500 |
| commit | eafb8a8e10c1b520bb2af5b6028ea816236309d5 (patch) | |
| tree | 16422d304c9b295ba2fb07c5395f1149899f899e /test cases/unit | |
| parent | 6ec6e0c9ec5a9f0a01fe573cfc76fb26986fbd18 (diff) | |
| download | meson-eafb8a8e10c1b520bb2af5b6028ea816236309d5.tar.gz | |
install: Add --strip option
Diffstat (limited to 'test cases/unit')
| -rw-r--r-- | test cases/unit/104 strip/lib.c | 1 | ||||
| -rw-r--r-- | test cases/unit/104 strip/meson.build | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/test cases/unit/104 strip/lib.c b/test cases/unit/104 strip/lib.c new file mode 100644 index 000000000..3940fde7e --- /dev/null +++ b/test cases/unit/104 strip/lib.c @@ -0,0 +1 @@ +void func(void){} diff --git a/test cases/unit/104 strip/meson.build b/test cases/unit/104 strip/meson.build new file mode 100644 index 000000000..dff61ab43 --- /dev/null +++ b/test cases/unit/104 strip/meson.build @@ -0,0 +1,3 @@ +project('strip', 'c') + +shared_library('a', 'lib.c', install: true) |
