tmp.c/meson.build
Vincent Batts e62400400d
*: shaping into a project structure
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2025-02-10 16:29:08 -05:00

21 lines
450 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',
'common.h',
'account.cpp', 'account.h',
'worker.h',
]
account_exe = executable('account', account_sources,
cpp_args: ['-std=c++23'],
)