blob: 3bf419c1401ee70e3b8ffe258fd7fa6b281d645d (
plain)
1
2
3
4
5
6
|
project('run native test', ['c'])
executable('terget_exe', 'main.c')
native_exe = executable('native_exe', 'main.c', native: true)
test('native_exe', native_exe, args: ['native_test_has_run.stamp'])
|