18 lines
460 B
Meson
18 lines
460 B
Meson
project('lcppthw', 'cpp',
|
|
default_options: ['cpp_std=c++20'])
|
|
|
|
fmt_dep = dependency('fmt')
|
|
|
|
executable('goc', 'goc.cpp',
|
|
win_subsystem: 'windows',
|
|
cpp_args: '-DFMT_HEADER_ONLY',
|
|
dependencies: fmt_dep)
|
|
|
|
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')
|