bdd04bef60
osgarchive osgconv osgdem osgversion osgviewer into applications directory. Leaving them in the examples directory as well, for now. Made examples optional via the make COMPILE_EXAMPLES=yes option Added static lib and static plugin build support.
47 lines
820 B
Plaintext
47 lines
820 B
Plaintext
################################################################
|
|
# Dependency library which have been installed on this system
|
|
|
|
GDAL_INSTALLED ?= no
|
|
JASPER_INSTALLED ?= no
|
|
|
|
FREETYPE_INSTALLED ?= yes
|
|
|
|
XINE_INSTALLED ?= no
|
|
|
|
AVIFILE_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
|
|
LIBMPEG3_INSTALLED ?= no
|
|
|
|
else
|
|
|
|
QUICKTIME_INSTALLED ?= no
|
|
LIBJPEG_INSTALLED ?= yes
|
|
LIBUNGIF_INSTALLED ?= yes
|
|
LIBTIFF_INSTALLED ?= yes
|
|
LIBPNG_INSTALLED ?= yes
|
|
LIBMPEG3_INSTALLED ?= no
|
|
|
|
endif
|
|
|
|
|
|
COIN_INSTALLED ?= no
|
|
INVENTOR_INSTALLED ?= no
|
|
|
|
PERFORMER_INSTALLED ?= no
|
|
|
|
DEMETER_INSTALLED ?= no
|
|
|
|
COMPILE_EXAMPLES ?= no
|
|
|