tmp.c/meson.build
Vincent Batts af02cae0ba
meson and C++ files as *.cpp
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2025-02-08 10:16:33 -05:00

12 lines
319 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')
account_sources = ['account.cpp', 'account.h']
account_exe = executable('account', account_sources)