tmp.c/meson.build
Vincent Batts bfa3196b62
account: split class logic out and have it building
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2025-02-08 11:09:09 -05:00

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