mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
85 lines
2.0 KiB
Makefile
85 lines
2.0 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 \
|
|
../hch/CAbilityHandler.cpp \
|
|
../CAdvmapInterface.cpp \
|
|
../CBattleInterface.cpp \
|
|
./CBitmapHandler.cpp \
|
|
../CCallback.cpp \
|
|
../CCastleInterface.cpp \
|
|
./CCreatureAnimation.cpp \
|
|
../CCursorHandler.cpp \
|
|
../hch/CDefHandler.cpp \
|
|
../CGameInfo.cpp \
|
|
../CGameInterface.cpp \
|
|
../hch/CGeneralTextHandler.cpp \
|
|
../CHeroWindow.cpp \
|
|
./Client.cpp \
|
|
../CLuaHandler.cpp \
|
|
../CMessage.cpp \
|
|
../CMT.cpp \
|
|
../hch/CMusicHandler.cpp \
|
|
../CPathfinder.cpp \
|
|
../CPlayerInterface.cpp \
|
|
../CPreGame.cpp \
|
|
../hch/CPreGameTextHandler.cpp \
|
|
../hch/CSndHandler.cpp \
|
|
../CThreadHelper.cpp \
|
|
./Graphics.cpp \
|
|
../mapHandler.cpp \
|
|
../SDL_Extensions.cpp \
|
|
../SDL_framerate.cpp \
|
|
./CConfigHandler.cpp \
|
|
./CSpellWindow.cpp \
|
|
../AdventureMapButton.h \
|
|
../AI_Base.h \
|
|
../hch/CAbilityHandler.h \
|
|
../CAdvmapInterface.h \
|
|
../hch/CAmbarCendamo.h \
|
|
../hch/CArtHandler.h \
|
|
../CBattleInterface.h \
|
|
./CBitmapHandler.h \
|
|
../hch/CBuildingHandler.h \
|
|
../CCallback.h \
|
|
../CCastleInterface.h \
|
|
./CCreatureAnimation.h \
|
|
../hch/CCreatureHandler.h \
|
|
../CCursorHandler.h \
|
|
../hch/CDefHandler.h \
|
|
../CGameInfo.h \
|
|
../CGameInterface.h \
|
|
../hch/CGeneralTextHandler.h \
|
|
../hch/CHeroHandler.h \
|
|
../CHeroWindow.h \
|
|
./Client.h \
|
|
../CLuaHandler.h \
|
|
../CMessage.h \
|
|
../hch/CMusicHandler.h \
|
|
../hch/CObjectHandler.h \
|
|
../CPathfinder.h \
|
|
../CPlayerInterface.h \
|
|
../CPreGame.h \
|
|
../hch/CPreGameTextHandler.h \
|
|
../hch/CSndHandler.h \
|
|
../hch/CSpellHandler.h \
|
|
../CThreadHelper.h \
|
|
../global.h \
|
|
./Graphics.h \
|
|
../int3.h \
|
|
../map.h \
|
|
../mapHandler.h \
|
|
../nodrze.h \
|
|
../SDL_framerate.h \
|
|
../StartInfo.h \
|
|
../stdafx.h \
|
|
../timeHandler.h \
|
|
./CSpellWindow.h \
|
|
./CConfigHandler.h
|