diff --git a/account.cc b/account.cpp similarity index 100% rename from account.cc rename to account.cpp diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..e5a735f --- /dev/null +++ b/meson.build @@ -0,0 +1,12 @@ +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) diff --git a/read++.cc b/read++.cpp similarity index 100% rename from read++.cc rename to read++.cpp