John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 1 | project( |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 2 | '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 Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 10 | 'warning_level=2', |
Ed Tanous | 0df69a8 | 2024-10-03 17:35:11 -0700 | [diff] [blame] | 11 | 'werror=true', |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 12 | ], |
| 13 | ) |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 14 | |
Karthik Rajagopalan | 45e7332 | 2024-07-26 14:27:24 -0700 | [diff] [blame] | 15 | add_project_arguments( |
Ed Tanous | 358c7e1 | 2024-07-15 13:54:57 -0700 | [diff] [blame] | 16 | '-DLIBCPER_JSON_SPEC="' |
Ed Tanous | 10eb6de | 2024-10-03 17:23:12 -0700 | [diff] [blame] | 17 | + meson.current_source_dir() + '/specification/json/cper-json.json"', |
Ed Tanous | 358c7e1 | 2024-07-15 13:54:57 -0700 | [diff] [blame] | 18 | language: ['c', 'cpp'], |
| 19 | ) |
| 20 | |
Aushim Nagarkatti | 517282f | 2025-03-03 17:08:31 -0800 | [diff] [blame^] | 21 | add_project_arguments('-DLIBCPER_EXAMPLES="' |
| 22 | + meson.current_source_dir() + '/examples"', language: ['c', 'cpp']) |
Aushim Nagarkatti | ae8f6d9 | 2025-01-29 17:34:44 -0800 | [diff] [blame] | 23 | |
Andrew Adriance | 1a90898 | 2024-07-02 14:26:10 -0700 | [diff] [blame] | 24 | library_is_share = get_option('default_library') == 'shared' |
Ed Tanous | 10eb6de | 2024-10-03 17:23:12 -0700 | [diff] [blame] | 25 | add_project_arguments('-D_POSIX_C_SOURCE=200809L', language: 'c') |
Andrew Adriance | 1a90898 | 2024-07-02 14:26:10 -0700 | [diff] [blame] | 26 | |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 27 | project_description = 'libcper library' |
| 28 | |
Ed Tanous | a84fc93 | 2024-07-15 13:48:35 -0700 | [diff] [blame] | 29 | section_sources = files( |
Ed Tanous | 10eb6de | 2024-10-03 17:23:12 -0700 | [diff] [blame] | 30 | 'sections/cper-section-ampere.c', |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 31 | '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 Rajagopalan | 683e055 | 2024-03-07 12:30:43 -0800 | [diff] [blame] | 43 | 'sections/cper-section-nvidia.c', |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 44 | '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 Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 48 | ) |
| 49 | |
Ed Tanous | a3b7f8a | 2024-11-04 16:38:59 -0800 | [diff] [blame] | 50 | edk_sources = files('Cper.c') |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 51 | |
Ed Tanous | a84fc93 | 2024-07-15 13:48:35 -0700 | [diff] [blame] | 52 | generator_section_sources = files( |
Ed Tanous | 10eb6de | 2024-10-03 17:23:12 -0700 | [diff] [blame] | 53 | 'generator/sections/gen-section-ampere.c', |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 54 | '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 Rajagopalan | 683e055 | 2024-03-07 12:30:43 -0800 | [diff] [blame] | 63 | 'generator/sections/gen-section-nvidia.c', |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 64 | '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 Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 68 | ) |
| 69 | |
John Chung | abc62b8 | 2024-05-22 22:45:36 +0800 | [diff] [blame] | 70 | cc = meson.get_compiler('c') |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 71 | |
Ed Tanous | eed88bb | 2024-10-03 17:18:20 -0700 | [diff] [blame] | 72 | json_c_dep = dependency('json-c', required: false) |
| 73 | if not json_c_dep.found() |
Ed Tanous | 10eb6de | 2024-10-03 17:23:12 -0700 | [diff] [blame] | 74 | json_c = subproject( |
| 75 | 'json-c', |
| 76 | required: true, |
| 77 | default_options: ['warning_level=0'], |
| 78 | ) |
Ed Tanous | eed88bb | 2024-10-03 17:18:20 -0700 | [diff] [blame] | 79 | json_c_dep = json_c.get_variable('json_c_dep') |
| 80 | endif |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 81 | |
Ed Tanous | 0df69a8 | 2024-10-03 17:35:11 -0700 | [diff] [blame] | 82 | libcper_parse_sources = files( |
Ed Tanous | a7d2cdd | 2024-07-15 11:07:27 -0700 | [diff] [blame] | 83 | 'base64.c', |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 84 | 'common-utils.c', |
Ed Tanous | 0df69a8 | 2024-10-03 17:35:11 -0700 | [diff] [blame] | 85 | 'cper-parse.c', |
| 86 | 'cper-utils.c', |
| 87 | 'ir-parse.c', |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 88 | 'json-schema.c', |
Ed Tanous | 0df69a8 | 2024-10-03 17:35:11 -0700 | [diff] [blame] | 89 | ) |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 90 | |
Thu Nguyen | e42fb48 | 2024-10-15 14:43:11 +0000 | [diff] [blame] | 91 | libcper_include = ['include'] |
| 92 | libcper_include_dir = include_directories(libcper_include, is_system: true) |
| 93 | subdir('include') |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 94 | |
| 95 | libcper_parse = library( |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 96 | 'cper-parse', |
| 97 | libcper_parse_sources, |
Ed Tanous | a84fc93 | 2024-07-15 13:48:35 -0700 | [diff] [blame] | 98 | section_sources, |
| 99 | edk_sources, |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 100 | version: meson.project_version(), |
Thu Nguyen | e42fb48 | 2024-10-15 14:43:11 +0000 | [diff] [blame] | 101 | include_directories: libcper_include_dir, |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 102 | c_args: '-Wno-address-of-packed-member', |
Ed Tanous | 10eb6de | 2024-10-03 17:23:12 -0700 | [diff] [blame] | 103 | dependencies: [json_c_dep], |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 104 | install: true, |
| 105 | install_dir: get_option('libdir'), |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 106 | ) |
Karthik Rajagopalan | 9fe2cb5 | 2024-08-08 15:12:29 -0700 | [diff] [blame] | 107 | libcper_parse_dep = declare_dependency( |
Thu Nguyen | e42fb48 | 2024-10-15 14:43:11 +0000 | [diff] [blame] | 108 | include_directories: libcper_include_dir, |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 109 | link_with: libcper_parse, |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 110 | ) |
| 111 | |
Ed Tanous | 10eb6de | 2024-10-03 17:23:12 -0700 | [diff] [blame] | 112 | libcper_generate_sources = [ |
Ed Tanous | 0df69a8 | 2024-10-03 17:35:11 -0700 | [diff] [blame] | 113 | 'common-utils.c', |
Ed Tanous | 10eb6de | 2024-10-03 17:23:12 -0700 | [diff] [blame] | 114 | 'generator/cper-generate.c', |
| 115 | 'generator/gen-utils.c', |
Ed Tanous | 10eb6de | 2024-10-03 17:23:12 -0700 | [diff] [blame] | 116 | ] |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 117 | |
| 118 | libcper_generate = library( |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 119 | 'cper-generate', |
| 120 | libcper_generate_sources, |
Ed Tanous | a84fc93 | 2024-07-15 13:48:35 -0700 | [diff] [blame] | 121 | generator_section_sources, |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 122 | version: meson.project_version(), |
Thu Nguyen | e42fb48 | 2024-10-15 14:43:11 +0000 | [diff] [blame] | 123 | include_directories: libcper_include_dir, |
Ed Tanous | 10eb6de | 2024-10-03 17:23:12 -0700 | [diff] [blame] | 124 | dependencies: [libcper_parse_dep, json_c_dep], |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 125 | install: true, |
| 126 | install_dir: get_option('libdir'), |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 127 | ) |
Karthik Rajagopalan | 9fe2cb5 | 2024-08-08 15:12:29 -0700 | [diff] [blame] | 128 | libcper_generate_dep = declare_dependency( |
Thu Nguyen | e42fb48 | 2024-10-15 14:43:11 +0000 | [diff] [blame] | 129 | include_directories: libcper_include_dir, |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 130 | link_with: libcper_generate, |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 131 | ) |
| 132 | |
Karthik Rajagopalan | 9fe2cb5 | 2024-08-08 15:12:29 -0700 | [diff] [blame] | 133 | import('pkgconfig').generate( |
| 134 | libcper_parse, |
| 135 | name: meson.project_name(), |
| 136 | version: meson.project_version(), |
Ed Tanous | 10eb6de | 2024-10-03 17:23:12 -0700 | [diff] [blame] | 137 | description: 'C bindings for parsing CPER', |
Karthik Rajagopalan | 9fe2cb5 | 2024-08-08 15:12:29 -0700 | [diff] [blame] | 138 | ) |
| 139 | |
John Chung | abc62b8 | 2024-05-22 22:45:36 +0800 | [diff] [blame] | 140 | if get_option('utility').allowed() |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 141 | executable( |
| 142 | 'cper-convert', |
| 143 | 'cli-app/cper-convert.c', |
Thu Nguyen | e42fb48 | 2024-10-15 14:43:11 +0000 | [diff] [blame] | 144 | include_directories: libcper_include_dir, |
Ed Tanous | 10eb6de | 2024-10-03 17:23:12 -0700 | [diff] [blame] | 145 | dependencies: [libcper_parse_dep, json_c_dep], |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 146 | install: true, |
| 147 | install_dir: get_option('bindir'), |
| 148 | ) |
John Chung | abc62b8 | 2024-05-22 22:45:36 +0800 | [diff] [blame] | 149 | |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 150 | executable( |
| 151 | 'cper-generate', |
| 152 | 'generator/cper-generate-cli.c', |
Ed Tanous | a84fc93 | 2024-07-15 13:48:35 -0700 | [diff] [blame] | 153 | edk_sources, |
Thu Nguyen | e42fb48 | 2024-10-15 14:43:11 +0000 | [diff] [blame] | 154 | include_directories: libcper_include_dir, |
Ed Tanous | 10eb6de | 2024-10-03 17:23:12 -0700 | [diff] [blame] | 155 | dependencies: [libcper_generate_dep], |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 156 | install: true, |
| 157 | install_dir: get_option('bindir'), |
| 158 | ) |
John Chung | abc62b8 | 2024-05-22 22:45:36 +0800 | [diff] [blame] | 159 | endif |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 160 | |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 161 | if get_option('tests').allowed() |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 162 | subdir('tests') |
Karthik Rajagopalan | 5220c9b | 2024-08-08 00:24:44 -0700 | [diff] [blame] | 163 | endif |