mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-24 22:14:36 +02:00
2ff07fa66a
-- Reduced memory usage for images with margins -- Implemented RLE compression - Linux-related changes: -- build system updated to include changed paths -- new dependency: boost-program-options -- configure option --disable-debug will produce optimized build - Several gcc compile fixes - Optimized CPU usage on town screens - Removed several includes from headers - Possible fix for #496
16 lines
350 B
Makefile
16 lines
350 B
Makefile
bin_PROGRAMS = vcmiserver
|
|
|
|
vcmiserver_LDADD = $(top_builddir)/lib/libvcmi.la
|
|
vcmiserver_CXXFLAGS = @SDL_CXXFLAGS@
|
|
vcmiserver_LDFLAGS = -L$(top_builddir)/lib
|
|
vcmiserver_SOURCES = \
|
|
../CConsoleHandler.cpp \
|
|
../CConsoleHandler.h \
|
|
CGameHandler.cpp \
|
|
CGameHandler.h \
|
|
CVCMIServer.cpp \
|
|
CVCMIServer.h \
|
|
NetPacksServer.cpp \
|
|
stdafx.cpp \
|
|
stdafx.h
|