mirror of
https://github.com/kgabis/parson.git
synced 2024-11-24 06:05:29 +00:00
simplified meson.build (#206)
This commit is contained in:
parent
60c37844d7
commit
fd02ea0c56
26
meson.build
26
meson.build
@ -12,37 +12,23 @@ parson_sources = ['parson.c']
|
||||
|
||||
parson_inc = include_directories('.')
|
||||
|
||||
lib_so_version = '0'
|
||||
|
||||
parson_shared_lib = shared_library(
|
||||
meson.project_name(),
|
||||
sources: parson_sources,
|
||||
soversion: lib_so_version,
|
||||
install: true
|
||||
)
|
||||
|
||||
parson_static_lib = static_library(
|
||||
parson_lib = library(
|
||||
meson.project_name(),
|
||||
sources: parson_sources,
|
||||
install: true
|
||||
)
|
||||
|
||||
install_headers('parson.h', subdir : 'parson')
|
||||
install_headers('parson.h')
|
||||
|
||||
parson_shared_dep = declare_dependency(
|
||||
parson = declare_dependency(
|
||||
include_directories : parson_inc,
|
||||
link_with : parson_shared_lib
|
||||
)
|
||||
|
||||
parson_static_dep = declare_dependency(
|
||||
include_directories : parson_inc,
|
||||
link_with : parson_static_lib
|
||||
link_with : parson_lib
|
||||
)
|
||||
|
||||
pkgconfig = import('pkgconfig')
|
||||
|
||||
# will create a pkg config for the shared lib only
|
||||
pkgconfig.generate(parson_shared_lib,
|
||||
# will create a pkg config
|
||||
pkgconfig.generate(parson_lib,
|
||||
version: meson.project_version(),
|
||||
filebase: meson.project_name(),
|
||||
name: meson.project_name(),
|
||||
|
Loading…
Reference in New Issue
Block a user