24 lines
523 B
Makefile
24 lines
523 B
Makefile
#!smake
|
|
include $(OSGHOME)/Make/makedefs
|
|
|
|
C++FILES = ReaderWriterDX.cpp \
|
|
DXWriter.cpp \
|
|
AreaGeoSetTriangulator.cpp \
|
|
StateSetStr.cpp
|
|
|
|
TARGET_BASENAME = osgdb_dx
|
|
|
|
LOADABLE = $(OSGHOME)/lib/osgPlugins/$(TARGET_BASENAME).$(DL_EXT)
|
|
LIB=
|
|
|
|
TARGET_LOADER_FILES = osgPlugins/$(TARGET_BASENAME).$(DL_EXT)
|
|
|
|
LIBS = $(GL_LIBS) -losg -losgDB
|
|
MACOSXLIBS = -L$(OSGHOME)/lib -losg -losgDB -lstdc++
|
|
|
|
C++FLAGS += -I. -I$(OSGHOME)/include
|
|
LDFLAGS += -L$(OSGHOME)/lib
|
|
|
|
include $(OSGHOME)/Make/makerules
|
|
|