Moved osgProducer and osgproducerviewer out into their own repository.

Clean up the source for remaining references to osgProducer/Producer.
This commit is contained in:
Robert Osfield
2007-02-27 13:16:18 +00:00
parent 6a539c4110
commit eb4ad4229f
154 changed files with 672 additions and 8418 deletions

View File

@@ -4,9 +4,6 @@
# should we compile osgIntrospection?
COMPILE_INTROSPECTION ?= no
# should we compile osgProducer and the associated applications?
PRODUCER_INSTALLED ?= yes
# should we compile any of the examples?
COMPILE_EXAMPLES ?= no

View File

@@ -123,14 +123,6 @@ ifneq ("$(OPENTHREADS_LIB_DIR)","")
LDFLAGS += -L$(OPENTHREADS_LIB_DIR)
endif
ifneq ("$(PRODUCER_INC_DIR)","")
INC += -I$(PRODUCER_INC_DIR)
endif
ifneq ("$(PRODUCER_LIB_DIR)","")
LDFLAGS += -L$(PRODUCER_LIB_DIR)
endif
RECURSIVE_TARGETS = \
opt \

View File

@@ -25,10 +25,6 @@ SRC_DIRS = \
osgSim \
osgManipulator
ifeq ($(PRODUCER_INSTALLED),yes)
SRC_DIRS += osgProducer
endif
ifeq ($(GDAL_INSTALLED),yes)
SRC_DIRS += osgTerrain
endif
@@ -57,10 +53,6 @@ WRAPPER_DIRS = \
osgViewer \
ifeq ($(PRODUCER_INSTALLED),yes)
WRAPPER_DIRS += osgProducer
endif
ifeq ($(GDAL_INSTALLED),yes)
WRAPPER_DIRS += osgTerrain
endif
@@ -198,12 +190,6 @@ ifeq ($(GDAL_INSTALLED),yes)
APPLICATION_DIRS += osgdem
endif
ifeq ($(PRODUCER_INSTALLED),yes)
APPLICATION_DIRS += osgproducerviewer
endif
EXAMPLE_DIRS = \
osganimate \
osgautotransform \