source: xplra/src/xplra/Makefile.am@ 10:b0048ba6f3ca

Last change on this file since 10:b0048ba6f3ca was 9:953cd606427c, checked in by István Váradi <ivaradi@…>, 12 years ago

Registering multi-data update requests works

File size: 947 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 \
[9]35 GetMultiDataRefRequest.cc \
36 SetMultiDataRefRequest.cc
[0]37
38libxplra_la_LIBADD=$(LIBXPLCOMMON_LIBS)
39
40noinst_HEADERS= \
[8]41 ListenThread.h \
42 Request.h \
43 RequestQueue.h \
44 Protocol.h \
45 ServerThread.h \
46 Task.h \
47 TaskRequest.h \
48 DataRefTask.h \
49 GetDataRefTask.h \
50 SetDataRefTask.h \
51 MultiTaskRequest.h \
[9]52 GetMultiDataRefRequest.h \
53 SetMultiDataRefRequest.h
Note: See TracBrowser for help on using the repository browser.