aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2010-04-28 14:39:26 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2013-01-05 17:17:48 +0100
commit25f24d3406750598ab091bc2ce98585decfd799d (patch)
tree4b44b3858d9a5a6e521fd42df2085e0fa205bc97 /Makefile
parent799aa2a252d04e730e598ebb46f3a66f530717c0 (diff)
downloadusdx-25f24d3406750598ab091bc2ce98585decfd799d.tar.gz
usdx-25f24d3406750598ab091bc2ce98585decfd799d.tar.xz
usdx-25f24d3406750598ab091bc2ce98585decfd799d.zip
added event_manager
event_manager for passing the events from the SDL thread to the event thread
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9d5c27a7..c3c12b1a 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ sources:=$(wildcard $(TOP)/src/*/*/*.cpp) $(wildcard $(TOP)/src/*/*.cpp) $(wildc
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 -lSDL_gfx -lcppunit -lGL
+LDFLAGS:=-lsqlite3 -lSDL -llog4cxx -lboost_program_options-mt -lboost_filesystem-mt -lboost_thread-mt -lSDL_image -lSDL_gfx -lcppunit -lGL
TARGET:=$(PROJECT)
objects:=$(sources:.cpp=.o)