diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2010-04-28 14:39:26 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2013-01-05 17:17:48 +0100 |
commit | 25f24d3406750598ab091bc2ce98585decfd799d (patch) | |
tree | 4b44b3858d9a5a6e521fd42df2085e0fa205bc97 /Makefile | |
parent | 799aa2a252d04e730e598ebb46f3a66f530717c0 (diff) | |
download | usdx-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 '')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |