MimIR 0.1
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.1"
6#define MIM_VER_MAJOR "0"
7#define MIM_VER_MINOR "1"
8#define MIM_VER_PATCH ""
9
10#define MIM_INSTALL_PREFIX "/usr/local"
11
12#ifdef _MSC_VER
13#define MIM_EXPORT __declspec(dllexport)
14#define MIM_IMPORT __declspec(dllimport)
15#else
16#define MIM_EXPORT __attribute__((visibility("default")))
17#define MIM_IMPORT
18#endif