diff options
| author | William A. Kennington III <wak@google.com> | 2019-03-28 03:24:57 -0700 |
|---|---|---|
| committer | William A. Kennington III <wak@google.com> | 2019-03-28 03:25:08 -0700 |
| commit | 1937ef65b505b1d856c74074d6042bdb336728af (patch) | |
| tree | e8c8bd7f7fe9da778d45901675030e78b32c503e | |
| parent | 15982f6c0a252bc3642efb2df5d3c209e535c4fa (diff) | |
| download | stdplus-1937ef65b505b1d856c74074d6042bdb336728af.tar.gz stdplus-1937ef65b505b1d856c74074d6042bdb336728af.zip | |
meson: Add version to library
Otherwise bitbake will treat it as a private library and not move it to
the proper directory and generate the necessary shlib metadata.
Change-Id: Ib53a0b28a60e04d33a7634843282daa04181fc8f
Signed-off-by: William A. Kennington III <wak@google.com>
| -rw-r--r-- | src/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/meson.build b/src/meson.build index 1cf2631..fd56941 100644 --- a/src/meson.build +++ b/src/meson.build @@ -5,6 +5,7 @@ stdplus = library( ], include_directories: includes, implicit_include_directories: false, + version: meson.project_version(), install: true) import('pkgconfig').generate( |

