source: xplra/test/Makefile.am@ 55:fa05d8dd30a2

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

Added the C client API for hotkey handling and the test program. Also changed the name of _sleep to xplra_sleep to be able to compile the code for Windows

File size: 1.0 KB
Line 
1INCLUDES=-I $(top_srcdir)/src/client/c $(VSCPL_CFLAGS)
2
3LDADD=../src/client/c/hu/varadiistvan/xplra/libxplra.la
4if TARGET_API_WIN32
5AM_LDFLAGS=-static -static-libgcc -static-libstdc++
6endif
7
8noinst_PROGRAMS=ctest basictest basicctest multigettest multigetctest multisettest multisetctest hotkeytest hotkeyctest
9
10ctest_SOURCES=ctest.c
11if TARGET_API_WIN32
12ctest_LDFLAGS=-lstdc++
13endif
14
15basictest_SOURCES=basictest.cc
16
17basicctest_SOURCES=basicctest.c
18if TARGET_API_WIN32
19basicctest_LDFLAGS=-lstdc++
20endif
21
22multigettest_SOURCES=multigettest.cc
23
24multigetctest_SOURCES=multigetctest.c
25if TARGET_API_WIN32
26multigetctest_LDFLAGS=-lstdc++
27endif
28
29multisettest_SOURCES=multisettest.cc
30
31multisetctest_SOURCES=multisetctest.c
32if TARGET_API_WIN32
33multisetctest_LDFLAGS=-lstdc++
34endif
35
36hotkeytest_SOURCES=hotkeytest.cc
37
38hotkeyctest_SOURCES=hotkeyctest.c
39if TARGET_API_WIN32
40hotkeyctest_LDFLAGS=-lstdc++
41endif
42
43EXTRA_DIST=\
44 runpy.sh \
45 basictest.py \
46 multigettest.py \
47 multisettest.py \
48 hotkeytest.py
Note: See TracBrowser for help on using the repository browser.