|
|
|
@ -1,12 +1,15 @@ |
|
|
|
|
project('lcppthw', 'cpp', |
|
|
|
|
default_options: ['cpp_std=c++20']) |
|
|
|
|
|
|
|
|
|
fmt_dep = dependency('fmt') |
|
|
|
|
dependencies = [ |
|
|
|
|
dependency('fmt'), |
|
|
|
|
dependency('sqlite3'), |
|
|
|
|
dependency('sqlitecpp') |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
executable('goc', 'goc.cpp', |
|
|
|
|
win_subsystem: 'windows', |
|
|
|
|
cpp_args: '-DFMT_HEADER_ONLY', |
|
|
|
|
dependencies: fmt_dep) |
|
|
|
|
dependencies: dependencies) |
|
|
|
|
|
|
|
|
|
executable('ex01', 'ex01.cpp') |
|
|
|
|
executable('ex02', 'ex02.cpp') |
|
|
|
|