blob: 932a7ad6aafd251b54c7543a051235ec5e2c89eb [file] [log] [blame]
Andrew Jeffery9c766792022-08-10 23:12:49 +09301project('libpldm', ['c','cpp'],
2 default_options: [
Andrew Jeffery953bc8c2023-05-22 15:24:17 +09303 'debug=true',
4 'optimization=g',
Andrew Jeffery9c766792022-08-10 23:12:49 +09305 'warning_level=3',
6 'werror=true',
7 'cpp_std=c++20',
8 'c_std=c17',
Andrew Jeffery5cf32ea2023-07-03 13:40:00 +09309 'b_ndebug=if-release',
Andrew Jeffery9c766792022-08-10 23:12:49 +093010 'tests=' + (meson.is_subproject() ? 'disabled' : 'enabled'),
11 ],
Andrew Jeffery3f39f962023-08-29 14:54:29 +093012 version: '0.7.0',
George Liubfd06e42023-08-16 10:30:13 +080013 meson_version: '>=1.1.0',
Andrew Jeffery9c766792022-08-10 23:12:49 +093014)
15
Andrew Jeffery9d2a1c62023-06-05 13:02:16 +093016add_project_arguments('-D_DEFAULT_SOURCE', language: ['c'])
17
18compiler = meson.get_compiler('c')
19conf = configuration_data()
20if compiler.has_header('poll.h')
21 conf.set('PLDM_HAS_POLL', 1)
22endif
23
24# ABI control
25visible = '__attribute__((visibility("default")))'
26if get_option('abi').contains('deprecated')
27 conf.set('LIBPLDM_ABI_DEPRECATED', visible)
28 add_project_arguments('-DLIBPLDM_API_DEPRECATED', language: ['c', 'cpp'])
29else
30 conf.set('LIBPLDM_ABI_DEPRECATED', '')
31endif
32conf.set('LIBPLDM_ABI_STABLE', visible) # Always expose the stable symbols
33if get_option('abi').contains('testing')
34 conf.set('LIBPLDM_ABI_TESTING', visible)
35 add_project_arguments('-DLIBPLDM_API_TESTING', language: ['c', 'cpp'])
36else
37 conf.set('LIBPLDM_ABI_TESTING', '')
38endif
Andrew Jeffery9c766792022-08-10 23:12:49 +093039
Andrew Jefferyf89befe2023-06-16 13:02:09 +093040config = configure_file(output: 'config.h',
41 configuration: conf
42)
43
44add_project_arguments('-include', '@0@'.format(config), language: 'c')
45
Andrew Jefferyb0c1d202023-11-07 22:08:44 +103046libpldm_include_dir = include_directories('include', is_system: true)
Pavithra Barithayaa7989cd2023-10-30 08:52:28 -050047
Andrew Jefferyb0c1d202023-11-07 22:08:44 +103048subdir('include')
Andrew Jefferyb0c1d202023-11-07 22:08:44 +103049subdir('src')
Andrew Jeffery9c766792022-08-10 23:12:49 +093050
Andrew Jefferyd1269362023-11-08 15:54:35 +103051if get_option('tests').allowed()
Andrew Jeffery9c766792022-08-10 23:12:49 +093052 subdir('tests')
53endif
Rashmica Gupta6af2a292023-04-27 14:20:17 +100054
55install_subdir('instance-db',
56 install_mode: 'r--r--r--',
57 install_dir: get_option('datadir') / meson.project_name())