Fully annotated reference manual - version 1.8.12
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
y
Functions
a
b
c
d
e
f
g
i
j
k
l
m
n
o
p
r
s
t
u
v
Variables
Typedefs
b
c
e
g
h
i
l
o
p
r
s
t
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
b
c
e
h
i
k
o
r
s
t
Enumerations
a
b
c
d
e
f
i
l
m
o
p
q
r
s
t
v
Enumerator
a
b
c
d
e
f
g
i
l
m
n
p
r
s
t
v
Related Functions
a
b
c
e
g
i
l
m
n
o
p
q
s
u
Files
File List
File Members
All
a
b
c
d
e
f
h
i
l
n
o
p
q
r
s
t
v
Functions
b
e
i
r
Variables
a
b
c
d
e
f
i
n
o
p
q
r
s
t
v
Typedefs
Macros
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
qle
auto_link.hpp
Go to the documentation of this file.
1
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3
#ifndef quantext_autolink_hpp
4
#define quantext_autolink_hpp
5
6
#include <boost/config.hpp>
7
8
#ifdef _M_X64
9
#define QE_LIB_PLATFORM "-x64"
10
#else
11
#define QE_LIB_PLATFORM
12
#endif
13
14
/*** libraries to be linked ***/
15
16
// select thread opt:
17
#ifdef _MT
18
#define QE_LIB_THREAD_OPT "-mt"
19
#else
20
#define QE_LIB_THREAD_OPT
21
#endif
22
23
// select linkage opt:
24
#ifdef _DLL
25
#if defined(_DEBUG)
26
#define QE_LIB_RT_OPT "-gd"
27
#else
28
#define QE_LIB_RT_OPT
29
#endif
30
#else
31
#if defined(_DEBUG)
32
#define QE_LIB_RT_OPT "-sgd"
33
#else
34
#define QE_LIB_RT_OPT "-s"
35
#endif
36
#endif
37
38
#define QE_LIB_NAME "QuantExt"
QE_LIB_PLATFORM QE_LIB_THREAD_OPT QE_LIB_RT_OPT ".lib"
39
40
#pragma comment(lib, QE_LIB_NAME)
41
#ifdef BOOST_LIB_DIAGNOSTIC
42
#pragma message("Will (need to) link to lib file: "
QE_LIB_NAME)
43
#endif
44
45
#endif
Generated by
Doxygen
1.9.5