diff options
Diffstat (limited to 'src/tests/Makefile.am')
-rw-r--r-- | src/tests/Makefile.am | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/tests/Makefile.am b/src/tests/Makefile.am new file mode 100644 index 0000000..85d42cf --- /dev/null +++ b/src/tests/Makefile.am | |||
@@ -0,0 +1,22 @@ | |||
1 | INCLUDES= -I.. | ||
2 | |||
3 | noinst_PROGRAMS= \ | ||
4 | testTexture \ | ||
5 | testFont \ | ||
6 | testSignals \ | ||
7 | testKeys \ | ||
8 | testDemandAttention \ | ||
9 | testFullscreen \ | ||
10 | testStringUtil | ||
11 | |||
12 | testTexture_SOURCES = texturetest.cc | ||
13 | testFont_SOURCES = testFont.cc | ||
14 | testSignals_SOURCES = testSignals.cc | ||
15 | testKeys_SOURCES = testKeys.cc | ||
16 | testDemandAttention_SOURCES = testDemandAttention.cc | ||
17 | #testResource_SOURCES = Resourcetest.cc | ||
18 | testFullscreen_SOURCES = fullscreentest.cc | ||
19 | testStringUtil_SOURCES = StringUtiltest.cc | ||
20 | |||
21 | LDADD=../FbTk/libFbTk.a | ||
22 | |||