summaryrefslogtreecommitdiffstats
path: root/config.h.in
blob: ec3e783444e9b2ca6db6fd0b98abe57a4540d5be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* Do not modify this file directly; it is generated by meson from config.h.in!
 * This file will be overwritten when meson runs again. */

#ifndef VL_CONFIG_H_INCLUDED
#define VL_CONFIG_H_INCLUDED

enum {
  PLATFORM_WINDOWS,
  PLATFORM_LINUX,
  PLATFORM_OSX,
  PLATFORM_UNKNOWN
};

#mesondefine VL_OS_NAME
#mesondefine VL_OS
#mesondefine VL_ARCH_NAME
#mesondefine VL_JRE_ARCH
#mesondefine VL_ENDIAN_LITTLE
#mesondefine VL_ENDIAN_BIG

#if !(VL_ENDIAN_LITTLE || VL_ENDIAN_BIG)
#error Bad platform endianness. Must be big or little.
#endif

#endif