0
0
Fork 0
mirror of https://github.com/boltgolt/howdy.git synced 2024-09-12 09:41:18 +02:00

build: add boost locale module

This commit is contained in:
MusiKid 2021-07-28 12:16:41 +02:00 committed by musikid
parent 039217152d
commit 27460c8198
No known key found for this signature in database
GPG key ID: 7567D43648C6E2F4

View file

@ -4,6 +4,6 @@ inih = subproject('inih')
inih_cpp = inih.get_variable('INIReader_dep')
libpam = meson.get_compiler('c').find_library('pam')
boost = dependency('boost')
boost = dependency('boost', modules: ['locale'])
threads = dependency('threads')
shared_library('pam_howdy', 'main.cc', dependencies: [boost, libpam, inih_cpp, threads], install: true, install_dir: '/lib/security/')