Last change
on this file since 3:459106f9bf9a was 3:459106f9bf9a, checked in by István Váradi <ivaradi@…>, 12 years ago |
Very basic client and server functionality works
|
File size:
712 bytes
|
Line | |
---|
1 | INCLUDES=@XPSDK_INCLUDES@
|
---|
2 |
|
---|
3 | AM_CXXFLAGS=$(LIBXPLCOMMON_CFLAGS)
|
---|
4 |
|
---|
5 | AM_CPPFLAGS=-DXPLM210
|
---|
6 |
|
---|
7 | if TARGET_API_WIN32
|
---|
8 | AM_CPPFLAGS+=-DIBM
|
---|
9 | AM_LDFLAGS=@XPSDK_LDFLAGS@ -no-undefined
|
---|
10 | if TARGET_API_WIN64
|
---|
11 | AM_LDFLAGS+=-lXPLM_64
|
---|
12 | else
|
---|
13 | AM_LDFLAGS+=-lXPLM
|
---|
14 | endif
|
---|
15 | endif
|
---|
16 |
|
---|
17 | if TARGET_API_POSIX
|
---|
18 | AM_CPPFLAGS+=-DLIN
|
---|
19 | AM_CXXFLAGS+=-fPIC -fno-stack-protector
|
---|
20 | endif
|
---|
21 |
|
---|
22 |
|
---|
23 | lib_LTLIBRARIES=libxplra.la
|
---|
24 |
|
---|
25 | libxplra_la_SOURCES= \
|
---|
26 | plugin.cc \
|
---|
27 | ListenThread.cc \
|
---|
28 | RequestQueue.cc \
|
---|
29 | ServerThread.cc \
|
---|
30 | TaskRequest.cc \
|
---|
31 | DataRefTask.cc \
|
---|
32 | GetDataRefTask.cc
|
---|
33 |
|
---|
34 | libxplra_la_LIBADD=$(LIBXPLCOMMON_LIBS)
|
---|
35 |
|
---|
36 | noinst_HEADERS= \
|
---|
37 | ListenThread.h \
|
---|
38 | Request.h \
|
---|
39 | RequestQueue.h \
|
---|
40 | ServerThread.h \
|
---|
41 | Task.h \
|
---|
42 | TaskRequest.h \
|
---|
43 | DataRefTask.h \
|
---|
44 | GetDataRefTask.h
|
---|
Note:
See
TracBrowser
for help on using the repository browser.