blob: f9c943bb91db34d2a9e54bedd88dd2480ab3dda6 [file] [log] [blame]
Andrew Jefferyaa16a0d2024-06-03 16:23:56 +09301project('libpldm', 'c',
Andrew Jeffery9c766792022-08-10 23:12:49 +09302 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 Jefferyc166dd52024-05-22 15:45:34 +093012 version: '0.8.0',
George Liubfd06e42023-08-16 10:30:13 +080013 meson_version: '>=1.1.0',
Andrew Jeffery9c766792022-08-10 23:12:49 +093014)
15
Andrew Jefferyaa16a0d2024-06-03 16:23:56 +093016if get_option('tests').allowed()
17 add_languages('cpp')
18endif
19
Andrew Jeffery9d2a1c62023-06-05 13:02:16 +093020add_project_arguments('-D_DEFAULT_SOURCE', language: ['c'])
21
22compiler = meson.get_compiler('c')
23conf = configuration_data()
24if compiler.has_header('poll.h')
25 conf.set('PLDM_HAS_POLL', 1)
26endif
27
28# ABI control
29visible = '__attribute__((visibility("default")))'
30if get_option('abi').contains('deprecated')
31 conf.set('LIBPLDM_ABI_DEPRECATED', visible)
32 add_project_arguments('-DLIBPLDM_API_DEPRECATED', language: ['c', 'cpp'])
33else
34 conf.set('LIBPLDM_ABI_DEPRECATED', '')
35endif
36conf.set('LIBPLDM_ABI_STABLE', visible) # Always expose the stable symbols
37if get_option('abi').contains('testing')
38 conf.set('LIBPLDM_ABI_TESTING', visible)
39 add_project_arguments('-DLIBPLDM_API_TESTING', language: ['c', 'cpp'])
40else
41 conf.set('LIBPLDM_ABI_TESTING', '')
42endif
Andrew Jeffery9c766792022-08-10 23:12:49 +093043
Andrew Jefferyf89befe2023-06-16 13:02:09 +093044config = configure_file(output: 'config.h',
45 configuration: conf
46)
47
48add_project_arguments('-include', '@0@'.format(config), language: 'c')
49
Andrew Jefferyb0c1d202023-11-07 22:08:44 +103050libpldm_include_dir = include_directories('include', is_system: true)
Pavithra Barithayaa7989cd2023-10-30 08:52:28 -050051
Andrew Jefferyb0c1d202023-11-07 22:08:44 +103052subdir('include')
Andrew Jefferyb0c1d202023-11-07 22:08:44 +103053subdir('src')
Andrew Jeffery9c766792022-08-10 23:12:49 +093054
Andrew Jefferyd1269362023-11-08 15:54:35 +103055if get_option('tests').allowed()
Andrew Jeffery9c766792022-08-10 23:12:49 +093056 subdir('tests')
57endif
Rashmica Gupta6af2a292023-04-27 14:20:17 +100058
59install_subdir('instance-db',
60 install_mode: 'r--r--r--',
61 install_dir: get_option('datadir') / meson.project_name())