Thorin 1.9.0
The Higher ORder INtermediate representation
Loading...
Searching...
No Matches
config.h
Go to the documentation of this file.
1#pragma once
2
3#define THORIN_ENABLE_CHECKS
4
5#define THORIN_VER "1.9.0"
6#define THORIN_VER_MAJOR "1"
7#define THORIN_VER_MINOR "9"
8#define THORIN_VER_PATCH "0"
9
10#define THORIN_INSTALL_PREFIX "/usr/local"
11
12#ifdef _MSC_VER
13#define THORIN_EXPORT __declspec(dllexport)
14#define THORIN_IMPORT __declspec(dllimport)
15#else
16#define THORIN_EXPORT __attribute__((visibility("default")))
17#define THORIN_IMPORT
18#endif