mirror of
https://github.com/marzer/tomlplusplus.git
synced 2024-11-02 02:26:28 +00:00
16 lines
257 B
Meson
16 lines
257 B
Meson
|
if get_option('build_tt_encoder')
|
||
|
executable(
|
||
|
'tt_encoder',
|
||
|
'tt_encoder.cpp',
|
||
|
include_directories: include_dirs
|
||
|
)
|
||
|
endif
|
||
|
|
||
|
if get_option('build_tt_decoder')
|
||
|
executable(
|
||
|
'tt_decoder',
|
||
|
'tt_decoder.cpp',
|
||
|
include_directories: include_dirs
|
||
|
)
|
||
|
endif
|