psp2name/tools/csv2sqlite/meson.build
King_DuckZ 3f353b7dfe First import.
Lists are a bit dirty and can't be imported into sqlite atm
due to them having duplicated serial numbers. They need cleaning,
possibly against titelIDs.txt which, on the other hand, contains
dodgy character sequences.
2020-02-26 18:35:22 +01:00

7 lines
116 B
Meson

sqlite_dep = dependency('sqlite3')
csv2sqlite = executable('csv2sqlite',
'main.d',
dependencies: [sqlite_dep]
)