~mordred/libmemcached/merge-vs-work

« back to all changes in this revision

Viewing changes to win32/include.am

  • Committer: Monty Taylor
  • Date: 2011-02-13 18:47:03 UTC
  • Revision ID: mordred@inaugust.com-20110213184703-usxdc2h4do3bnxhx
Build for Visual Studio.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# vim:ft=automake
2
2
# included from Top Level Makefile.am
3
3
# All paths should be given relative to the root
4
 
noinst_HEADERS+= win32/wrappers.h
5
4
 
6
 
if BUILD_WIN32_WRAPPERS
7
 
libmemcached_libmemcached_la_LDFLAGS+=-no-undefined
8
 
libmemcached_libmemcachedprotocol_la_LDFLAGS+=-no-undefined
9
 
libmemcached_libmemcachedutil_la_LDFLAGS+=-no-undefined
10
 
libhashkit_libhashkit_la_LDFLAGS+=-no-undefined
 
5
if BUILD_WIN32
 
6
libmemcached_libmemcached_la_SOURCES+= win32/mingw/poll.c
11
7
endif
 
8
 
 
9
noinst_HEADERS+= \
 
10
                 win32/mingw/errno.h \
 
11
                 win32/mingw/poll.h \
 
12
                 win32/windows/config.h \
 
13
                 win32/windows/inttypes.h \
 
14
                 win32/windows/stdint.h
 
15
 
 
16
EXTRA_DIST+= \
 
17
             win32/libhashkit.vcxproj \
 
18
             win32/libhashkit.vcxproj.filters \
 
19
             win32/libmemcached.sln \
 
20
             win32/libmemcached.vcxproj \
 
21
             win32/libmemcached.vcxproj.filters \
 
22
             win32/win32compat.vcxproj
 
23