Resources path should use the same path as meson installed path

This commit is contained in:
dec05eba
2024-08-05 21:25:59 +02:00
parent 041ee753b1
commit ae1897cf2c
2 changed files with 13 additions and 5 deletions

View File

@@ -31,13 +31,16 @@ dep = [
mglpp_dep,
]
prefix = get_option('prefix')
datadir = get_option('datadir')
gsr_overlay_resources_path = join_paths(prefix, datadir, 'gsr-overlay')
executable(
meson.project_name(),
src,
install : true,
dependencies : dep,
cpp_args : '-DGSR_OVERLAY_RESOURCES_PATH="' + gsr_overlay_resources_path + '"',
)
prefix = get_option('prefix')
datadir = get_option('datadir')
install_subdir('images', install_dir : join_paths(prefix, datadir, 'gsr-overlay'))
install_subdir('images', install_dir : gsr_overlay_resources_path)