blob: fa054c56fe8e7844025471d5115615b42e62910b [file] [log] [blame]
John Chung197ea122024-05-03 19:57:55 +08001project(
Ed Tanousa5b3d492024-06-18 13:24:05 -07002 'libcper',
3 ['c', 'cpp'],
4 version: '0.1',
5 meson_version: '>=1.1.1',
6 default_options: [
7 'c_std=c18',
8 'cpp_std=c++23',
9 'tests=' + (meson.is_subproject() ? 'disabled' : 'enabled'),
Ed Tanousa5b3d492024-06-18 13:24:05 -070010 'warning_level=2',
Ed Tanous0df69a82024-10-03 17:35:11 -070011 'werror=true',
Ed Tanousa5b3d492024-06-18 13:24:05 -070012 ],
13)
John Chung197ea122024-05-03 19:57:55 +080014
Karthik Rajagopalan45e73322024-07-26 14:27:24 -070015add_project_arguments(
Ed Tanous358c7e12024-07-15 13:54:57 -070016 '-DLIBCPER_JSON_SPEC="'
Ed Tanous10eb6de2024-10-03 17:23:12 -070017 + meson.current_source_dir() + '/specification/json/cper-json.json"',
Ed Tanous358c7e12024-07-15 13:54:57 -070018 language: ['c', 'cpp'],
19)
20
Aushim Nagarkatti517282f2025-03-03 17:08:31 -080021add_project_arguments('-DLIBCPER_EXAMPLES="'
22 + meson.current_source_dir() + '/examples"', language: ['c', 'cpp'])
Aushim Nagarkattiae8f6d92025-01-29 17:34:44 -080023
Andrew Adriance1a908982024-07-02 14:26:10 -070024library_is_share = get_option('default_library') == 'shared'
Ed Tanous10eb6de2024-10-03 17:23:12 -070025add_project_arguments('-D_POSIX_C_SOURCE=200809L', language: 'c')
Andrew Adriance1a908982024-07-02 14:26:10 -070026
John Chung197ea122024-05-03 19:57:55 +080027project_description = 'libcper library'
28
Ed Tanousa84fc932024-07-15 13:48:35 -070029section_sources = files(
Ed Tanous10eb6de2024-10-03 17:23:12 -070030 'sections/cper-section-ampere.c',
Ed Tanousa5b3d492024-06-18 13:24:05 -070031 'sections/cper-section-arm.c',
32 'sections/cper-section-ccix-per.c',
33 'sections/cper-section-cxl-component.c',
34 'sections/cper-section-cxl-protocol.c',
35 'sections/cper-section-dmar-generic.c',
36 'sections/cper-section-dmar-iommu.c',
37 'sections/cper-section-dmar-vtd.c',
38 'sections/cper-section-firmware.c',
39 'sections/cper-section-generic.c',
40 'sections/cper-section-ia32x64.c',
41 'sections/cper-section-ipf.c',
42 'sections/cper-section-memory.c',
Karthik Rajagopalan683e0552024-03-07 12:30:43 -080043 'sections/cper-section-nvidia.c',
Ed Tanousa5b3d492024-06-18 13:24:05 -070044 'sections/cper-section-pci-bus.c',
45 'sections/cper-section-pci-dev.c',
46 'sections/cper-section-pcie.c',
47 'sections/cper-section.c',
John Chung197ea122024-05-03 19:57:55 +080048)
49
Ed Tanousa3b7f8a2024-11-04 16:38:59 -080050edk_sources = files('Cper.c')
John Chung197ea122024-05-03 19:57:55 +080051
Ed Tanousa84fc932024-07-15 13:48:35 -070052generator_section_sources = files(
Ed Tanous10eb6de2024-10-03 17:23:12 -070053 'generator/sections/gen-section-ampere.c',
Ed Tanousa5b3d492024-06-18 13:24:05 -070054 'generator/sections/gen-section-arm.c',
55 'generator/sections/gen-section-ccix-per.c',
56 'generator/sections/gen-section-cxl-component.c',
57 'generator/sections/gen-section-cxl-protocol.c',
58 'generator/sections/gen-section-dmar.c',
59 'generator/sections/gen-section-firmware.c',
60 'generator/sections/gen-section-generic.c',
61 'generator/sections/gen-section-ia32x64.c',
62 'generator/sections/gen-section-memory.c',
Karthik Rajagopalan683e0552024-03-07 12:30:43 -080063 'generator/sections/gen-section-nvidia.c',
Ed Tanousa5b3d492024-06-18 13:24:05 -070064 'generator/sections/gen-section-pci-bus.c',
65 'generator/sections/gen-section-pci-dev.c',
66 'generator/sections/gen-section-pcie.c',
67 'generator/sections/gen-section.c',
John Chung197ea122024-05-03 19:57:55 +080068)
69
John Chungabc62b82024-05-22 22:45:36 +080070cc = meson.get_compiler('c')
John Chung197ea122024-05-03 19:57:55 +080071
Ed Tanouseed88bb2024-10-03 17:18:20 -070072json_c_dep = dependency('json-c', required: false)
73if not json_c_dep.found()
Ed Tanous10eb6de2024-10-03 17:23:12 -070074 json_c = subproject(
75 'json-c',
76 required: true,
77 default_options: ['warning_level=0'],
78 )
Ed Tanouseed88bb2024-10-03 17:18:20 -070079 json_c_dep = json_c.get_variable('json_c_dep')
80endif
John Chung197ea122024-05-03 19:57:55 +080081
Ed Tanous0df69a82024-10-03 17:35:11 -070082libcper_parse_sources = files(
Ed Tanousa7d2cdd2024-07-15 11:07:27 -070083 'base64.c',
Ed Tanousa5b3d492024-06-18 13:24:05 -070084 'common-utils.c',
Ed Tanous0df69a82024-10-03 17:35:11 -070085 'cper-parse.c',
86 'cper-utils.c',
87 'ir-parse.c',
Ed Tanousa5b3d492024-06-18 13:24:05 -070088 'json-schema.c',
Ed Tanous0df69a82024-10-03 17:35:11 -070089)
John Chung197ea122024-05-03 19:57:55 +080090
Thu Nguyene42fb482024-10-15 14:43:11 +000091libcper_include = ['include']
92libcper_include_dir = include_directories(libcper_include, is_system: true)
93subdir('include')
John Chung197ea122024-05-03 19:57:55 +080094
95libcper_parse = library(
Ed Tanousa5b3d492024-06-18 13:24:05 -070096 'cper-parse',
97 libcper_parse_sources,
Ed Tanousa84fc932024-07-15 13:48:35 -070098 section_sources,
99 edk_sources,
Ed Tanousa5b3d492024-06-18 13:24:05 -0700100 version: meson.project_version(),
Thu Nguyene42fb482024-10-15 14:43:11 +0000101 include_directories: libcper_include_dir,
Ed Tanousa5b3d492024-06-18 13:24:05 -0700102 c_args: '-Wno-address-of-packed-member',
Ed Tanous10eb6de2024-10-03 17:23:12 -0700103 dependencies: [json_c_dep],
Ed Tanousa5b3d492024-06-18 13:24:05 -0700104 install: true,
105 install_dir: get_option('libdir'),
John Chung197ea122024-05-03 19:57:55 +0800106)
Karthik Rajagopalan9fe2cb52024-08-08 15:12:29 -0700107libcper_parse_dep = declare_dependency(
Thu Nguyene42fb482024-10-15 14:43:11 +0000108 include_directories: libcper_include_dir,
Ed Tanousa5b3d492024-06-18 13:24:05 -0700109 link_with: libcper_parse,
John Chung197ea122024-05-03 19:57:55 +0800110)
111
Ed Tanous10eb6de2024-10-03 17:23:12 -0700112libcper_generate_sources = [
Ed Tanous0df69a82024-10-03 17:35:11 -0700113 'common-utils.c',
Ed Tanous10eb6de2024-10-03 17:23:12 -0700114 'generator/cper-generate.c',
115 'generator/gen-utils.c',
Ed Tanous10eb6de2024-10-03 17:23:12 -0700116]
John Chung197ea122024-05-03 19:57:55 +0800117
118libcper_generate = library(
Ed Tanousa5b3d492024-06-18 13:24:05 -0700119 'cper-generate',
120 libcper_generate_sources,
Ed Tanousa84fc932024-07-15 13:48:35 -0700121 generator_section_sources,
Ed Tanousa5b3d492024-06-18 13:24:05 -0700122 version: meson.project_version(),
Thu Nguyene42fb482024-10-15 14:43:11 +0000123 include_directories: libcper_include_dir,
Ed Tanous10eb6de2024-10-03 17:23:12 -0700124 dependencies: [libcper_parse_dep, json_c_dep],
Ed Tanousa5b3d492024-06-18 13:24:05 -0700125 install: true,
126 install_dir: get_option('libdir'),
John Chung197ea122024-05-03 19:57:55 +0800127)
Karthik Rajagopalan9fe2cb52024-08-08 15:12:29 -0700128libcper_generate_dep = declare_dependency(
Thu Nguyene42fb482024-10-15 14:43:11 +0000129 include_directories: libcper_include_dir,
Ed Tanousa5b3d492024-06-18 13:24:05 -0700130 link_with: libcper_generate,
John Chung197ea122024-05-03 19:57:55 +0800131)
132
Karthik Rajagopalan9fe2cb52024-08-08 15:12:29 -0700133import('pkgconfig').generate(
134 libcper_parse,
135 name: meson.project_name(),
136 version: meson.project_version(),
Ed Tanous10eb6de2024-10-03 17:23:12 -0700137 description: 'C bindings for parsing CPER',
Karthik Rajagopalan9fe2cb52024-08-08 15:12:29 -0700138)
139
John Chungabc62b82024-05-22 22:45:36 +0800140if get_option('utility').allowed()
Ed Tanousa5b3d492024-06-18 13:24:05 -0700141 executable(
142 'cper-convert',
143 'cli-app/cper-convert.c',
Thu Nguyene42fb482024-10-15 14:43:11 +0000144 include_directories: libcper_include_dir,
Ed Tanous10eb6de2024-10-03 17:23:12 -0700145 dependencies: [libcper_parse_dep, json_c_dep],
Ed Tanousa5b3d492024-06-18 13:24:05 -0700146 install: true,
147 install_dir: get_option('bindir'),
148 )
John Chungabc62b82024-05-22 22:45:36 +0800149
Ed Tanousa5b3d492024-06-18 13:24:05 -0700150 executable(
151 'cper-generate',
152 'generator/cper-generate-cli.c',
Ed Tanousa84fc932024-07-15 13:48:35 -0700153 edk_sources,
Thu Nguyene42fb482024-10-15 14:43:11 +0000154 include_directories: libcper_include_dir,
Ed Tanous10eb6de2024-10-03 17:23:12 -0700155 dependencies: [libcper_generate_dep],
Ed Tanousa5b3d492024-06-18 13:24:05 -0700156 install: true,
157 install_dir: get_option('bindir'),
158 )
John Chungabc62b82024-05-22 22:45:36 +0800159endif
John Chung197ea122024-05-03 19:57:55 +0800160
John Chung197ea122024-05-03 19:57:55 +0800161if get_option('tests').allowed()
Ed Tanousa5b3d492024-06-18 13:24:05 -0700162 subdir('tests')
Karthik Rajagopalan5220c9b2024-08-08 00:24:44 -0700163endif