blob: 1b82135e5777fc8619241819181aadad4b974bfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
INCLUDES= -I..
noinst_PROGRAMS= \
testTexture \
testFont \
testSignals \
testKeys \
testDemandAttention \
testFullscreen \
testStringUtil \
testRectangleUtil
testTexture_SOURCES = texturetest.cc
testFont_SOURCES = testFont.cc
testSignals_SOURCES = testSignals.cc
testKeys_SOURCES = testKeys.cc
testDemandAttention_SOURCES = testDemandAttention.cc
#testResource_SOURCES = Resourcetest.cc
testFullscreen_SOURCES = fullscreentest.cc
testStringUtil_SOURCES = StringUtiltest.cc
testRectangleUtil_SOURCES = testRectangleUtil.cc
LDADD=../FbTk/libFbTk.a
|