2022-01-03 18:51:03 +00:00
|
|
|
if get_option('build_tt_encoder')
|
|
|
|
executable(
|
|
|
|
'tt_encoder',
|
|
|
|
'tt_encoder.cpp',
|
2022-02-12 13:25:20 +00:00
|
|
|
cpp_args: devel_args,
|
2022-01-03 18:51:03 +00:00
|
|
|
include_directories: include_dirs
|
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
|
|
|
if get_option('build_tt_decoder')
|
|
|
|
executable(
|
|
|
|
'tt_decoder',
|
|
|
|
'tt_decoder.cpp',
|
2022-02-12 13:25:20 +00:00
|
|
|
cpp_args: devel_args,
|
2022-01-03 18:51:03 +00:00
|
|
|
include_directories: include_dirs
|
|
|
|
)
|
|
|
|
endif
|