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.2-dev"
6#define MIM_VER_MAJOR 0
7#define MIM_VER_MINOR 2
8#define MIM_VER_PATCH
9#define MIM_VER_SUFFIX "-dev"
10#define MIM_GIT_HASH "dfb94d6"
11
12#define MIM_INSTALL_PREFIX "/usr/local"
13#define MIM_LIBDIR "lib"
14
15#ifdef _MSC_VER
16# define MIM_EXPORT __declspec(dllexport)
17# define MIM_IMPORT __declspec(dllimport)
18#else
19# define MIM_EXPORT __attribute__((visibility("default")))
20# define MIM_IMPORT
21#endif