We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 803bf5f commit 66f6effCopy full SHA for 66f6eff
apps/src/meson.build
@@ -208,6 +208,23 @@ if (host_machine.system() != 'windows' and
208
install: true,
209
install_dir: get_option('libexecdir') / meson.project_name()
210
)
211
+
212
+ sbattach_files = internal_src
213
+ sbattach_files += files([
214
+ 'image.c',
215
+ 'lc_pkcs7_generator_helper.c',
216
+ 'lc_x509_generator_file_helper.c',
217
+ 'lc_x509_generator_print.c',
218
+ 'sbattach.c',
219
+ ])
220
221
+ sbattach = executable('sbattach',
222
+ [ sbattach_files ],
223
+ include_directories: [ include_internal_dirs ],
224
+ dependencies: leancrypto,
225
+ install: true,
226
+ install_dir: get_option('libexecdir') / meson.project_name()
227
+ )
228
endif
229
230
0 commit comments