a865ea7773
and Demeter itself nolonger compiles, osgdemeter has now been moved to the community section of openscenegraph.org.
51 lines
985 B
Plaintext
51 lines
985 B
Plaintext
################################################################
|
|
# Dependency library which have been installed on this system
|
|
|
|
# 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
|
|
|
|
# follows are dependenices on the various plugins.
|
|
|
|
GDAL_INSTALLED ?= no
|
|
JASPER_INSTALLED ?= no
|
|
|
|
FREETYPE_INSTALLED ?= yes
|
|
|
|
XINE_INSTALLED ?= no
|
|
|
|
ifeq ($(OS),Darwin)
|
|
DARWIN_QUICKTIME ?= yes
|
|
endif
|
|
|
|
ifeq ($(DARWIN_QUICKTIME),yes)
|
|
|
|
QUICKTIME_INSTALLED ?= yes
|
|
LIBJPEG_INSTALLED ?= no
|
|
LIBUNGIF_INSTALLED ?= no
|
|
LIBTIFF_INSTALLED ?= no
|
|
LIBPNG_INSTALLED ?= no
|
|
|
|
else
|
|
|
|
QUICKTIME_INSTALLED ?= no
|
|
LIBJPEG_INSTALLED ?= yes
|
|
LIBUNGIF_INSTALLED ?= yes
|
|
LIBTIFF_INSTALLED ?= yes
|
|
LIBPNG_INSTALLED ?= yes
|
|
|
|
endif
|
|
|
|
|
|
COIN_INSTALLED ?= no
|
|
INVENTOR_INSTALLED ?= no
|
|
|
|
PERFORMER_INSTALLED ?= no
|
|
|
|
GLUT_INSTALLED ?= no
|