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( |
| 5 | 'data/ras-data-p10-10.json', |
| 6 | 'data/ras-data-p10-20.json', |
| 7 | 'data/ras-data-explorer-11.json', |
| 8 | 'data/ras-data-explorer-20.json', |
Caleb Palmer | d5fa958 | 2023-02-27 16:12:41 -0600 | [diff] [blame] | 9 | 'data/ras-data-odyssey-10.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 | |
Zane Shelley | 3c79080 | 2021-08-04 22:19:26 -0500 | [diff] [blame] | 12 | install_data( ras_data_files, install_dir: join_paths(package_dir, 'ras-data') ) |
| 13 | |
| 14 | # Install the RAS data schema |
| 15 | |
Zane Shelley | 93b001c | 2023-03-24 17:45:04 -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 | |
| 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 | |