29 lines
641 B
Makefile
29 lines
641 B
Makefile
TOPDIR = ../..
|
|
include $(TOPDIR)/Make/makedefs
|
|
|
|
|
|
CXXFILES = \
|
|
AnimationPathManipulator.cpp\
|
|
MatrixManipulator.cpp\
|
|
DriveManipulator.cpp\
|
|
FlightManipulator.cpp\
|
|
GUIEventAdapter.cpp\
|
|
GUIEventHandler.cpp\
|
|
GUIEventHandlerVisitor.cpp\
|
|
KeySwitchMatrixManipulator.cpp\
|
|
SetSceneViewVisitor.cpp\
|
|
StateSetManipulator.cpp\
|
|
TerrainManipulator.cpp\
|
|
NodeTrackerManipulator.cpp\
|
|
TrackballManipulator.cpp\
|
|
Version.cpp\
|
|
|
|
DEF += -DOSGGA_LIBRARY
|
|
|
|
LIBS += -losgUtil -losg $(GL_LIBS) $(OTHER_LIBS)
|
|
|
|
TARGET_BASENAME = osgGA
|
|
LIB = $(LIB_PREFIX)$(TARGET_BASENAME).$(LIB_EXT)
|
|
|
|
include $(TOPDIR)/Make/makerules
|