tmp.c/meson.build
Vincent Batts d3a10d7190
*: adding a threaded worker example
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2025-02-08 19:56:52 -05:00

16 lines
412 B
Meson

project('tmp.c', 'cpp', 'c',
version: 'v0.1',
license: 'MIT'
)
a = run_command('date', check: true)
read_exe = executable('read', 'read.c', link_language : 'c',)
readpp_exe = executable('read++', 'read++.cpp')
worker_exe = executable('worker', 'worker.cpp')
account_sources = ['main.cpp', 'account.cpp', 'account.h']
account_exe = executable('account', account_sources,
cpp_args: ['-std=c++23'],
)