Zane Shelley | 4f4f4aa | 2021-08-02 12:41:25 -0500 | [diff] [blame] | 1 | |
Zane Shelley | 3c79080 | 2021-08-04 22:19:26 -0500 | [diff] [blame] | 2 | # Install the RAS data files |
Zane Shelley | 4f4f4aa | 2021-08-02 12:41:25 -0500 | [diff] [blame] | 3 | |
Zane Shelley | 3c79080 | 2021-08-04 22:19:26 -0500 | [diff] [blame] | 4 | ras_data_files = files( |
Zane Shelley | 3c79080 | 2021-08-04 22:19:26 -0500 | [diff] [blame] | 5 | 'data/ras-data-explorer-11.json', |
| 6 | 'data/ras-data-explorer-20.json', |
Caleb Palmer | d5fa958 | 2023-02-27 16:12:41 -0600 | [diff] [blame] | 7 | 'data/ras-data-odyssey-10.json', |
Patrick Williams | c322c32 | 2025-02-01 08:38:07 -0500 | [diff] [blame] | 8 | 'data/ras-data-p10-10.json', |
| 9 | 'data/ras-data-p10-20.json', |
Zane Shelley | 3c79080 | 2021-08-04 22:19:26 -0500 | [diff] [blame] | 10 | ) |
Zane Shelley | 4f4f4aa | 2021-08-02 12:41:25 -0500 | [diff] [blame] | 11 | |
Patrick Williams | c322c32 | 2025-02-01 08:38:07 -0500 | [diff] [blame] | 12 | install_data(ras_data_files, install_dir: join_paths(package_dir, 'ras-data')) |
Zane Shelley | 3c79080 | 2021-08-04 22:19:26 -0500 | [diff] [blame] | 13 | |
| 14 | # Install the RAS data schema |
| 15 | |
Patrick Williams | c322c32 | 2025-02-01 08:38:07 -0500 | [diff] [blame] | 16 | ras_data_schema = files('schema/ras-data-schema-v02.json') |
Zane Shelley | 3c79080 | 2021-08-04 22:19:26 -0500 | [diff] [blame] | 17 | |
Patrick Williams | c322c32 | 2025-02-01 08:38:07 -0500 | [diff] [blame] | 18 | install_data(ras_data_schema, install_dir: join_paths(package_dir, 'schema')) |
Zane Shelley | 4f4f4aa | 2021-08-02 12:41:25 -0500 | [diff] [blame] | 19 | |