source: xplcommon/src/xplcommon/Makefile.am@ 5:db1fa4c31a20

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

Added a generic buffer class

File size: 458 bytes
Line 
1SUBDIRS=
2if TARGET_API_POSIX
3SUBDIRS+=posix
4endif
5if TARGET_API_WIN32
6SUBDIRS+=win32
7endif
8
9lib_LTLIBRARIES=libxplcommon.la
10
11libxplcommon_la_SOURCES= \
12 Buffer.cc
13
14if TARGET_API_POSIX
15libxplcommon_la_LIBADD=posix/libxplcommon_posix.la
16endif
17
18if TARGET_API_WIN32
19libxplcommon_la_LIBADD=win32/libxplcommon_win32.la
20endif
21
22include_xplcommondir=$(includedir)/xplcommon
23include_xplcommon_HEADERS=\
24 config.h \
25 Thread.h \
26 Waiter.h \
27 WaitableEvent.h \
28 Buffer.h
Note: See TracBrowser for help on using the repository browser.