summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2019-03-20 14:20:56 -0700
committerEric Anholt <eric@anholt.net>2019-03-20 14:20:56 -0700
commit5033a65b8d9f2f030ed1ac9ee1bc2d909de252a3 (patch)
tree243f71a7ab637833524d4fb137c19a1dccf6701b
parent06bc6897d80929ab2e4e03e67148fc8b0c35c904 (diff)
Install the libs.HEADmaster
I expect people to generally want static libs, but if a shared build is done, it's not really useful without installing.
-rw-r--r--meson.build2
1 files changed, 2 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 55416fc..4bafef5 100644
--- a/meson.build
+++ b/meson.build
@@ -32,6 +32,7 @@ libhash_table = shared_library(
'hash_table.c',
'fnv_hash.c',
],
+ install: true,
)
libset = shared_library(
@@ -40,6 +41,7 @@ libset = shared_library(
'set.c',
'fnv_hash.c',
],
+ install: true,
)
libhash_table_dep = declare_dependency(