simple-cpp-game-study/PPP3/meson.build
2024-05-05 04:09:43 -04:00

21 lines
500 B
Meson

project('lcppthw', 'cpp',
default_options: ['cpp_std=c++20'])
dependencies = [
dependency('fmt'),
dependency('sqlite3'),
dependency('sqlitecpp')
]
executable('goc', 'goc.cpp',
cpp_args: '-DFMT_HEADER_ONLY',
dependencies: dependencies)
executable('ex01', 'ex01.cpp')
executable('ex02', 'ex02.cpp')
executable('ex03', 'ex03.cpp')
executable('ex04', 'ex04.cpp')
executable('ex05', 'ex05.cpp')
executable('ex06', 'ex06.cpp')
executable('ex07', 'ex07.cpp')
executable('ex08', 'ex08.cpp')