16 lines
412 B
Meson
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'],
|
|
)
|