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'), |
| 10 | 'werror=true', |
| 11 | 'warning_level=2', |
| 12 | ], |
| 13 | ) |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 14 | |
Andrew Adriance | 1a90898 | 2024-07-02 14:26:10 -0700 | [diff] [blame] | 15 | library_is_share = get_option('default_library') == 'shared' |
| 16 | |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 17 | project_description = 'libcper library' |
| 18 | |
Ed Tanous | a84fc93 | 2024-07-15 13:48:35 -0700 | [diff] [blame^] | 19 | section_sources = files( |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 20 | 'sections/cper-section-arm.c', |
| 21 | 'sections/cper-section-ccix-per.c', |
| 22 | 'sections/cper-section-cxl-component.c', |
| 23 | 'sections/cper-section-cxl-protocol.c', |
| 24 | 'sections/cper-section-dmar-generic.c', |
| 25 | 'sections/cper-section-dmar-iommu.c', |
| 26 | 'sections/cper-section-dmar-vtd.c', |
| 27 | 'sections/cper-section-firmware.c', |
| 28 | 'sections/cper-section-generic.c', |
| 29 | 'sections/cper-section-ia32x64.c', |
| 30 | 'sections/cper-section-ipf.c', |
| 31 | 'sections/cper-section-memory.c', |
| 32 | 'sections/cper-section-pci-bus.c', |
| 33 | 'sections/cper-section-pci-dev.c', |
| 34 | 'sections/cper-section-pcie.c', |
| 35 | 'sections/cper-section.c', |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 36 | ) |
| 37 | |
Ed Tanous | a84fc93 | 2024-07-15 13:48:35 -0700 | [diff] [blame^] | 38 | edk_sources = files('edk/Cper.c') |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 39 | |
Ed Tanous | a84fc93 | 2024-07-15 13:48:35 -0700 | [diff] [blame^] | 40 | generator_section_sources = files( |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 41 | 'generator/sections/gen-section-arm.c', |
| 42 | 'generator/sections/gen-section-ccix-per.c', |
| 43 | 'generator/sections/gen-section-cxl-component.c', |
| 44 | 'generator/sections/gen-section-cxl-protocol.c', |
| 45 | 'generator/sections/gen-section-dmar.c', |
| 46 | 'generator/sections/gen-section-firmware.c', |
| 47 | 'generator/sections/gen-section-generic.c', |
| 48 | 'generator/sections/gen-section-ia32x64.c', |
| 49 | 'generator/sections/gen-section-memory.c', |
| 50 | 'generator/sections/gen-section-pci-bus.c', |
| 51 | 'generator/sections/gen-section-pci-dev.c', |
| 52 | 'generator/sections/gen-section-pcie.c', |
| 53 | 'generator/sections/gen-section.c', |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 54 | ) |
| 55 | |
John Chung | abc62b8 | 2024-05-22 22:45:36 +0800 | [diff] [blame] | 56 | cc = meson.get_compiler('c') |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 57 | |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 58 | json_c_dep = dependency('json-c', required: true, fallback: ['json-c', 'json_c_dep']) |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 59 | |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 60 | libcper_parse_sources = [ |
Ed Tanous | a7d2cdd | 2024-07-15 11:07:27 -0700 | [diff] [blame] | 61 | 'base64.c', |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 62 | 'cper-parse.c', |
| 63 | 'ir-parse.c', |
| 64 | 'cper-utils.c', |
| 65 | 'common-utils.c', |
| 66 | 'json-schema.c', |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 67 | ] |
| 68 | |
| 69 | libcper_include = ['.'] |
| 70 | |
| 71 | libcper_parse = library( |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 72 | 'cper-parse', |
| 73 | libcper_parse_sources, |
Ed Tanous | a84fc93 | 2024-07-15 13:48:35 -0700 | [diff] [blame^] | 74 | section_sources, |
| 75 | edk_sources, |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 76 | version: meson.project_version(), |
| 77 | include_directories: include_directories(libcper_include), |
| 78 | c_args: '-Wno-address-of-packed-member', |
| 79 | dependencies: [ |
| 80 | json_c_dep, |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 81 | ], |
| 82 | install: true, |
| 83 | install_dir: get_option('libdir'), |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 84 | ) |
| 85 | libcper_parse = declare_dependency( |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 86 | include_directories: include_directories(libcper_include), |
| 87 | link_with: libcper_parse, |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 88 | ) |
| 89 | |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 90 | libcper_generate_sources = ['generator/cper-generate.c', 'generator/gen-utils.c', 'common-utils.c'] |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 91 | |
| 92 | libcper_generate = library( |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 93 | 'cper-generate', |
| 94 | libcper_generate_sources, |
Ed Tanous | a84fc93 | 2024-07-15 13:48:35 -0700 | [diff] [blame^] | 95 | generator_section_sources, |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 96 | version: meson.project_version(), |
| 97 | include_directories: include_directories(libcper_include), |
| 98 | dependencies: [ |
| 99 | libcper_parse, |
| 100 | json_c_dep, |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 101 | ], |
| 102 | install: true, |
| 103 | install_dir: get_option('libdir'), |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 104 | ) |
| 105 | libcper_generate = declare_dependency( |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 106 | include_directories: include_directories(libcper_include), |
| 107 | link_with: libcper_generate, |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 108 | ) |
| 109 | |
John Chung | abc62b8 | 2024-05-22 22:45:36 +0800 | [diff] [blame] | 110 | install_headers('cper-parse.h') |
| 111 | install_headers('cper-utils.h') |
| 112 | install_headers('common-utils.h') |
| 113 | install_headers('generator/cper-generate.h', subdir: 'generator') |
| 114 | install_headers('edk/Cper.h', subdir: 'edk') |
| 115 | install_headers('edk/BaseTypes.h', subdir: 'edk') |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 116 | |
John Chung | abc62b8 | 2024-05-22 22:45:36 +0800 | [diff] [blame] | 117 | if get_option('utility').allowed() |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 118 | executable( |
| 119 | 'cper-convert', |
| 120 | 'cli-app/cper-convert.c', |
| 121 | include_directories: include_directories(libcper_include), |
| 122 | dependencies: [ |
| 123 | libcper_parse, |
| 124 | json_c_dep, |
| 125 | ], |
| 126 | install: true, |
| 127 | install_dir: get_option('bindir'), |
| 128 | ) |
John Chung | abc62b8 | 2024-05-22 22:45:36 +0800 | [diff] [blame] | 129 | |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 130 | executable( |
| 131 | 'cper-generate', |
| 132 | 'generator/cper-generate-cli.c', |
Ed Tanous | a84fc93 | 2024-07-15 13:48:35 -0700 | [diff] [blame^] | 133 | edk_sources, |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 134 | include_directories: include_directories(libcper_include), |
| 135 | dependencies: [ |
| 136 | libcper_generate, |
| 137 | ], |
| 138 | install: true, |
| 139 | install_dir: get_option('bindir'), |
| 140 | ) |
John Chung | abc62b8 | 2024-05-22 22:45:36 +0800 | [diff] [blame] | 141 | endif |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 142 | |
Ed Tanous | 1e267b6 | 2024-06-18 13:20:42 -0700 | [diff] [blame] | 143 | run_command('cp', '-r', 'specification/json/', meson.current_build_dir(), check: true) |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 144 | run_command( |
| 145 | 'mv', |
| 146 | meson.current_build_dir() / 'json', |
| 147 | meson.current_build_dir() / 'specification', |
| 148 | ) |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 149 | |
| 150 | if get_option('tests').allowed() |
Ed Tanous | a5b3d49 | 2024-06-18 13:24:05 -0700 | [diff] [blame] | 151 | subdir('tests') |
John Chung | 197ea12 | 2024-05-03 19:57:55 +0800 | [diff] [blame] | 152 | endif |