source: vscpl/src/hu/varadiistvan/scpl/io/Makefile.am@ 7:e0118c752a06

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

Imported the WaitableEvent class

File size: 612 bytes
Line 
1SUBDIRS=
2
3if TARGET_API_POSIX
4SUBDIRS+=_posix
5endif
6
7if TARGET_API_WIN32
8SUBDIRS+=_win32
9AM_LDFLAGS=-no-undefined
10endif
11
12noinst_LTLIBRARIES=libvscpl_io.la
13
14libvscpl_io_la_SOURCES=
15
16if TARGET_API_POSIX
17libvscpl_io_la_LIBADD=_posix/libvscpl_io_posix.la
18endif
19
20if TARGET_API_WIN32
21libvscpl_io_la_LIBADD=_win32/libvscpl_io_win32.la
22endif
23
24include_vscpliodir=$(includedir)/hu/varadiistvan/scpl/io
25include_vscplio_HEADERS=\
26 Buffer.h \
27 Failable.h \
28 Waiter.h \
29 ReadingBuffer.h \
30 WritingBuffer.h \
31 WaitableEvent.h
Note: See TracBrowser for help on using the repository browser.