ducktorrent/src/meson.build
King_DuckZ 50f33300be Refactor higher level code into TorrentRead class
This also addresses the issue with paths of more than 1 item
so all torrents should now work and adds some error reporting
through exceptions
2025-04-07 01:01:52 +01:00

13 lines
240 B
Meson

executable(meson.project_name(),
'main.cpp',
'parser.cpp',
'split.cpp',
'torrent_read.cpp',
'visitors/debug_visitor.cpp',
'visitors/find_t_visitor.cpp',
dependencies: [
boost_dep,
libstriezel_dep,
],
install: true,
)