Skip to content

Commit

Permalink
meson: add option to set ATRparser
Browse files Browse the repository at this point in the history
  • Loading branch information
LudovicRousseau committed Aug 16, 2024
1 parent e17af39 commit 3b05d09
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ project('pcsc-tools', 'c', version : '1.7.2')
conf_data = configuration_data({
'PACKAGE_VERSION' : '"' + meson.project_version() + '"',
'pcsc_dir' : get_option('prefix') / get_option('datadir') / 'pcsc',
'ATR_PARSER' : '"' + get_option('ATRparser') + '"',
})

extra_link_args = []
Expand Down
5 changes: 5 additions & 0 deletions meson.options
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
option('ATRparser',
type : 'string',
value : 'ATR_analysis',
description : 'filename of the ATR parser to use')

0 comments on commit 3b05d09

Please sign in to comment.