blob: 0a112f3f09e707e55dc0e25cf3da3ff9194309ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
TESTS = proxy threaded oauth oauth-async flickr
# TODO: oauth-async is failing due to infinite looping for some reason. Need to
# fix this.
XFAIL_TESTS = oauth-async
AM_CPPFLAGS = $(SOUP_CFLAGS) -I$(top_srcdir)
AM_LDFLAGS = $(SOUP_LIBS) ../rest/librest-@API_VERSION@.la ../rest-extras/librest-extras-@API_VERSION@.la
check_PROGRAMS = $(TESTS)
proxy_SOURCES = proxy.c
threaded_SOURCES = threaded.c
oauth_SOURCES = oauth.c
oauth_async_SOURCES = oauth-async.c
flickr_SOURCES = flickr.c
|