mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-09-02 15:05:16 +00:00
[#3443] Proof of Concept: meson
This commit is contained in:
committed by
Francis Dupont
parent
adcefbfb05
commit
e37f8c004c
18
src/lib/mysql/meson.build
Normal file
18
src/lib/mysql/meson.build
Normal file
@@ -0,0 +1,18 @@
|
||||
if not mysql.found()
|
||||
subdir_done()
|
||||
endif
|
||||
|
||||
kea_mysql_lib = library('kea-mysql',
|
||||
'mysql_binding.cc',
|
||||
'mysql_binding.h',
|
||||
'mysql_connection.cc',
|
||||
'mysql_connection.h',
|
||||
'mysql_constants.h',
|
||||
cpp_args: [f'-DKEA_ADMIN="@kea_admin@"'],
|
||||
dependencies: [mysql],
|
||||
include_directories: [include_directories('.')] + includes,
|
||||
install: true,
|
||||
install_dir: 'lib',
|
||||
link_with: libs_built_so_far,
|
||||
)
|
||||
libs_built_so_far += [kea_mysql_lib]
|
Reference in New Issue
Block a user