aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2010-04-26 15:12:14 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2013-01-05 17:17:48 +0100
commitc6f0f0ebc12186dd81a244dae1eff784c0f0ca95 (patch)
tree30281cd748dca9a7869053e363fa7fe3b483c1c1 /test
parent7872dfb95de823b40233ab6364e10507263f973d (diff)
downloadusdx-c6f0f0ebc12186dd81a244dae1eff784c0f0ca95.tar.gz
usdx-c6f0f0ebc12186dd81a244dae1eff784c0f0ca95.tar.xz
usdx-c6f0f0ebc12186dd81a244dae1eff784c0f0ca95.zip
fixed test building
Diffstat (limited to 'test')
-rw-r--r--test/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Makefile b/test/Makefile
index 4a05284d..4524d8aa 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -2,15 +2,15 @@ PROJECT:=usdx-tests
TOP:=..
headers:=$(wildcard *.hpp) $(wildcard */*.hpp) $(wildcard $(TOP)/src/*/*/*.hpp) \
- $(wildcard $(TOP)/src/*/*.hpp) $(wildcard $(TOP)/src/*.hpp)
+ $(wildcard $(TOP)/src/*/*.hpp)
sources:=$(wildcard *.cpp) $(wildcard */*.cpp) $(wildcard $(TOP)/src/*/*/*.cpp) \
- $(wildcard $(TOP)/src/*/*.cpp) $(wildcard $(TOP)/src/*.cpp)
+ $(wildcard $(TOP)/src/*/*.cpp)
deps:=$(sources:.cpp=.d)
CXXFLAGS:=-Wall -Werror -I$(TOP)/src -I$(TOP)/src/base -I$(TOP)/src/menu -I$(TOP)/src/media -I$(TOP)/src/screens -g
-LDFLAGS:=-lsqlite3 -lSDL -llog4cxx -lboost_program_options-mt -lboost_filesystem-mt -lSDL_image -lcppunit -lGL
+LDFLAGS:=-lsqlite3 -lSDL -llog4cxx -lboost_program_options-mt -lboost_filesystem-mt -lSDL_image -lcppunit -lSDL_gfx
TARGET:=$(PROJECT)
objects:=$(sources:.cpp=.o)