meson.build 170 B

12345678
  1. project('endian check', 'c')
  2. if host_machine.endian() == 'big'
  3. add_global_arguments('-DIS_BE', language : 'c')
  4. endif
  5. test('endiantest', executable('prog', 'prog.c'))