From c700d4c9a1019fb235e0a7919c2c6e21bdd458e6 Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Fri, 19 Dec 2008 21:31:18 +0000 Subject: [PATCH] [tests] Ensures that test-viewport.c is built test-viewport.c wasn't listed correctly in the UNIT_TESTS variable (it was missing the .c extension, and so it wasn't being built.) --- tests/interactive/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/interactive/Makefile.am b/tests/interactive/Makefile.am index dcc4e673a..6f98be0ea 100644 --- a/tests/interactive/Makefile.am +++ b/tests/interactive/Makefile.am @@ -20,7 +20,8 @@ UNIT_TESTS = \ test-fullscreen.c \ test-shader.c \ test-unproject.c \ - test-viewport test-fbo.c \ + test-viewport.c \ + test-fbo.c \ test-opacity.c \ test-multistage.c \ test-cogl-primitives.c \