mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-26 03:52:01 +02:00
516b1e2b00
Updated project files for MSVC and automake (I hope I didn't break it) * Refactored pathfinding and integrated into CGameState. * Fixed issues with wrong calculating movement cost at server side * Hero infowindow won't be redrawed each time experience changes * Removed memory leaks with CPaths-s * Support for Sign objects * Bumped savegame formt version to ensure old not compatible saves won't be readed * Spellscrolls will disappear on visit (won't be treated as spellbooks anymore)
74 lines
1.7 KiB
Makefile
74 lines
1.7 KiB
Makefile
AUTOMAKE_OPTIONS=foreign
|
|
bin_PROGRAMS = vcmiclient
|
|
#vcmi_LDADD = $(BOOST_SYSTEM_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_THREAD_LIB)
|
|
#AM_CXXFLAGS = $(BOOST_CPPFLAGS)
|
|
vcmiclient_LDADD = $(BOOST_SYSTEM_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_THREAD_LIB)
|
|
#vcmiclient_LDADD = $(BOOST_SYSTEM_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_THREAD_LIB)
|
|
vcmiclient_LDFLAGS = -L$(top_builddir)/lib
|
|
vcmiclient_LDADD += -lvcmi
|
|
vcmiclient_SOURCES = \
|
|
../AdventureMapButton.cpp \
|
|
../CAdvmapInterface.cpp \
|
|
../CBattleInterface.cpp \
|
|
./CBitmapHandler.cpp \
|
|
../CCallback.cpp \
|
|
../CCastleInterface.cpp \
|
|
./CConfigHandler.cpp \
|
|
./CCreatureAnimation.cpp \
|
|
../CCursorHandler.cpp \
|
|
../hch/CDefHandler.cpp \
|
|
../CGameInfo.cpp \
|
|
../CGameInterface.cpp \
|
|
../CHeroWindow.cpp \
|
|
./Client.cpp \
|
|
../CMessage.cpp \
|
|
../CMT.cpp \
|
|
../hch/CMusicHandler.cpp \
|
|
../CPlayerInterface.cpp \
|
|
../CPreGame.cpp \
|
|
../hch/CSndHandler.cpp \
|
|
./CSpellWindow.cpp \
|
|
../CThreadHelper.cpp \
|
|
./Graphics.cpp \
|
|
../mapHandler.cpp \
|
|
./NetPacksClient.cpp \
|
|
../SDL_Extensions.cpp \
|
|
../SDL_framerate.cpp \
|
|
../AdventureMapButton.h \
|
|
../AI_Base.h \
|
|
../CAdvmapInterface.h \
|
|
../hch/CAmbarCendamo.h \
|
|
../CBattleInterface.h \
|
|
./CBitmapHandler.h \
|
|
../hch/CBuildingHandler.h \
|
|
../CCallback.h \
|
|
../CCastleInterface.h \
|
|
./CConfigHandler.h \
|
|
./CCreatureAnimation.h \
|
|
../CCursorHandler.h \
|
|
../hch/CDefHandler.h \
|
|
../CGameInfo.h \
|
|
../CGameInterface.h \
|
|
../hch/CHeroHandler.h \
|
|
../CHeroWindow.h \
|
|
./Client.h \
|
|
../CMessage.h \
|
|
../hch/CMusicHandler.h \
|
|
../hch/CObjectHandler.h \
|
|
../CPlayerInterface.h \
|
|
../CPreGame.h \
|
|
../hch/CSndHandler.h \
|
|
./CSpellWindow.h \
|
|
../CThreadHelper.h \
|
|
./FunctionList.h \
|
|
../global.h \
|
|
./Graphics.h \
|
|
../int3.h \
|
|
../map.h \
|
|
../mapHandler.h \
|
|
../nodrze.h \
|
|
../SDL_framerate.h \
|
|
../StartInfo.h \
|
|
../stdafx.h \
|
|
../timeHandler.h
|