MimIR
MimIR is my Intermediate Representation
Loading...
Searching...
No Matches
config.h
Go to the documentation of this file.
1#pragma once
2
3#define MIM_ENABLE_CHECKS
4
5#define MIM_VER "0.4-dev"
6#define MIM_VER_MAJOR 0
7#define MIM_VER_MINOR 4
8#define MIM_VER_PATCH
9#define MIM_VER_SUFFIX "-dev"
10#define MIM_GIT_HASH "18aed7c"
11
12#define MIM_INSTALL_PREFIX "/usr/local"
13#define MIM_LIBDIR "lib"
14#define MIM_DATADIR "share"
15
16#ifdef _MSC_VER
17# define MIM_EXPORT __declspec(dllexport)
18# define MIM_IMPORT __declspec(dllimport)
19# define MIM_NOINLINE __declspec(noinline)
20#else
21# define MIM_EXPORT __attribute__((visibility("default")))
22# define MIM_IMPORT
23# define MIM_NOINLINE __attribute__((noinline))
24#endif