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', |
| 9 | ) |
Zane Shelley | 4f4f4aa | 2021-08-02 12:41:25 -0500 | [diff] [blame] | 10 | |
Zane Shelley | 3c79080 | 2021-08-04 22:19:26 -0500 | [diff] [blame] | 11 | install_data( ras_data_files, install_dir: join_paths(package_dir, 'ras-data') ) |
| 12 | |
| 13 | # Install the RAS data schema |
| 14 | |
Zane Shelley | ee54c99 | 2021-08-08 17:46:48 -0500 | [diff] [blame] | 15 | ras_data_schema = files( 'schema/ras-data-schema-v01.json' ) |
Zane Shelley | 3c79080 | 2021-08-04 22:19:26 -0500 | [diff] [blame] | 16 | |
| 17 | install_data( ras_data_schema, install_dir: join_paths(package_dir, 'schema') ) |
Zane Shelley | 4f4f4aa | 2021-08-02 12:41:25 -0500 | [diff] [blame] | 18 | |