aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/24 endian/meson.build
blob: 80186fef8a28bf1426da9c45bed913f280a41c37 (plain)
1
2
3
4
5
6
7
project('endian check', 'c')

if host_machine.endian() == 'big'
  add_global_arguments('-DIS_BE', language : 'c')
endif

test('endiantest', executable('prog', 'prog.c'))