source: xplra/src/xplra/Makefile.am@ 8:acc105036a41

Last change on this file since 8:acc105036a41 was 8:acc105036a41, checked in by István Váradi <ivaradi@…>, 12 years ago

Added the registry of multiple-data queries

File size: 890 bytes
RevLine 
[0]1INCLUDES=@XPSDK_INCLUDES@
2
3AM_CXXFLAGS=$(LIBXPLCOMMON_CFLAGS)
4
[2]5AM_CPPFLAGS=-DXPLM210
6
[0]7if TARGET_API_WIN32
[2]8AM_CPPFLAGS+=-DIBM
[1]9AM_LDFLAGS=@XPSDK_LDFLAGS@ -no-undefined
10if TARGET_API_WIN64
11AM_LDFLAGS+=-lXPLM_64
12else
13AM_LDFLAGS+=-lXPLM
14endif
[0]15endif
16
17if TARGET_API_POSIX
[2]18AM_CPPFLAGS+=-DLIN
[0]19AM_CXXFLAGS+=-fPIC -fno-stack-protector
20endif
21
[2]22
[0]23lib_LTLIBRARIES=libxplra.la
24
25libxplra_la_SOURCES= \
[8]26 plugin.cc \
27 ListenThread.cc \
28 RequestQueue.cc \
29 ServerThread.cc \
30 TaskRequest.cc \
31 DataRefTask.cc \
32 GetDataRefTask.cc \
33 SetDataRefTask.cc \
34 MultiTaskRequest.cc \
35 GetMultiDataRefRequest.cc
[0]36
37libxplra_la_LIBADD=$(LIBXPLCOMMON_LIBS)
38
39noinst_HEADERS= \
[8]40 ListenThread.h \
41 Request.h \
42 RequestQueue.h \
43 Protocol.h \
44 ServerThread.h \
45 Task.h \
46 TaskRequest.h \
47 DataRefTask.h \
48 GetDataRefTask.h \
49 SetDataRefTask.h \
50 MultiTaskRequest.h \
51 GetMultiDataRefRequest.h
Note: See TracBrowser for help on using the repository browser.