blob: a49e5b7a8f3fdd987c0375d494080c878fdc5aa7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
DEFS += -DFLEXT_SYS=2
INCPATH += -I$(PDPATH)/src
LIBPATH += -L$(PDPATH)/bin
# these are both in PDPATH
LIBS += -lpd -lpthreadVC
EXT=dll
#########################################
ifdef SHARED
# --- shared ---
elseifdef THREADED
# --- static multi-threaded ---
ifdef DEBUG
LIBS += -lflext_td-pdwin
else
LIBS += -lflext_t-pdwin
endif
else
# --- static single-threaded ---
ifdef DEBUG
LIBS += -lflext_d-pdwin
else
LIBS += -lflext-pdwin
endif
endif
|