From f9b04635d30b568edb4d7f732d79d0184d0a7ce5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sat, 2 Aug 2014 11:38:58 +0200 Subject: [PATCH] tests: fix compilation of tests The header gui-curses.h doesn't need to be included (this causes an error because the real ncurses lib header is not found when compiling tests). --- tests/tests.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/tests.cpp b/tests/tests.cpp index 4d47fec7a..50f6051d7 100644 --- a/tests/tests.cpp +++ b/tests/tests.cpp @@ -37,7 +37,9 @@ extern "C" #include "../src/plugins/plugin.h" #include "../src/gui/gui-main.h" #include "../src/gui/gui-buffer.h" -#include "../src/gui/curses/gui-curses.h" + + extern void gui_main_init (); + extern void gui_main_loop (); } #include "CppUTest/CommandLineTestRunner.h"