blob: 2b6df84c9f74c81dc4f7a2db69bbe7d308925a3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
diff --git a/assets/meson.build b/assets/meson.build
index cbcfb10..6b6c4a7 100644
--- a/assets/meson.build
+++ b/assets/meson.build
@@ -54,8 +54,5 @@ fs = import('fs')
foreach file : audio_files
filename = fs.name(file)
- audio_target = configure_file(
- input : file,
- output: filename,
- copy : true)
+ install_data(filename, install_dir : 'share/apotris', install_mode : 'rw-r--r--')
endforeach
diff --git a/meson.build b/meson.build
index f1964fc..8ddd9c0 100644
--- a/meson.build
+++ b/meson.build
@@ -294,7 +294,8 @@ if host_machine.system() != 'gba'
dependencies : dependencies,
link_args : link_args,
win_subsystem : 'windows',
- install_rpath: 'lib'
+ install : true,
+ install_dir : 'lib/apotris'
)
endif
else
|