diff --git a/GNUmakefile b/GNUmakefile deleted file mode 100644 index b2b75c5d7..000000000 --- a/GNUmakefile +++ /dev/null @@ -1,12 +0,0 @@ -TOPDIR = . -include $(TOPDIR)/Make/makedefs -include $(TOPDIR)/Make/makedirdefs - -DIRS = $(TOP_LEVEL_DIRS) - -include $(TOPDIR)/Make/makedirrules -include $(TOPDIR)/Make/versionrules -include $(TOPDIR)/Make/instrules -include $(TOPDIR)/Make/distrules -include $(TOPDIR)/Make/helprules -include $(TOPDIR)/Make/tagrules diff --git a/Make/cygwin_plugin_def b/Make/cygwin_plugin_def deleted file mode 100644 index 010d27c76..000000000 --- a/Make/cygwin_plugin_def +++ /dev/null @@ -1,15 +0,0 @@ - -# -# blessed are those who try to make Windows behave like it should ... -# - -ifeq ($(OS),CYGWIN) -TARGET_BASENAME := $(PLUGIN_PREFIX)$(TARGET_BASENAME) -PLUGIN_PREFIX := cyg -endif - -ifeq ($(OS),MINGW) -TARGET_BASENAME := $(PLUGIN_PREFIX)$(TARGET_BASENAME) -PLUGIN_PREFIX := lib -endif - diff --git a/Make/cygwin_wrapper_def b/Make/cygwin_wrapper_def deleted file mode 100644 index abba92e8f..000000000 --- a/Make/cygwin_wrapper_def +++ /dev/null @@ -1,15 +0,0 @@ - -# -# blessed are those who try to make Windows behave like it should ... -# - -ifeq ($(OS),CYGWIN) -TARGET_BASENAME := $(WRAPPER_PREFIX)$(TARGET_BASENAME) -WRAPPER_PREFIX := cyg -endif - -ifeq ($(OS),MINGW) -TARGET_BASENAME := $(WRAPPER_PREFIX)$(TARGET_BASENAME) -WRAPPER_PREFIX := lib -endif - diff --git a/Make/dependencies b/Make/dependencies deleted file mode 100644 index 8c11a72ff..000000000 --- a/Make/dependencies +++ /dev/null @@ -1,61 +0,0 @@ -################################################################ -# Dependency library which have been installed on this system - -# should we compile osgIntrospection? -COMPILE_INTROSPECTION ?= no - -# should we compile any of the examples? -COMPILE_EXAMPLES ?= no - -# follows are dependenices on the various plugins. - -COLLADA_INSTALLED ?= no -COLLADA_DAE_HOME ?= /usr/local -COLLADA_DEBUG_LIBS ?= yes - -JASPER_INSTALLED ?= no - -FREETYPE_INSTALLED ?= yes - -XINE_INSTALLED ?= no - -QT3_INSTALLED ?= no - -QT4_INSTALLED ?= no -QT4_ROOT ?= /usr/local/ - -SDL_INSTALLED ?= no - -FLTK_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 - -LIBVRML_INSTALLED ?= no - -PERFORMER_INSTALLED ?= no - -GLUT_INSTALLED ?= no diff --git a/Make/distrules b/Make/distrules deleted file mode 100644 index 0f597b378..000000000 --- a/Make/distrules +++ /dev/null @@ -1,6 +0,0 @@ -distribution : - @sh $(MAKEDIST) OpenSceneGraph Make/rpm.header Make/rpm.files - - -cleandist: - @$(MAKECLEANDIST) diff --git a/Make/dolink.sh b/Make/dolink.sh deleted file mode 100644 index 346f423d4..000000000 --- a/Make/dolink.sh +++ /dev/null @@ -1,66 +0,0 @@ -#!/bin/sh - -bye() -{ - echo $1 - exit 1 -} - -TOPDIR=$1 -LNSRC=$2 -LNDEST=$3 -LINKCMD=$4 - -## Check command line - - -[ $# -lt 4 ] && bye "Usage: $0 " - -## Check for existence of link source file -[ -n "$LNSRC" ] || bye "Internal error (LNSRC definition)" - -## Check for existence of link destination file -[ -n "$LNDEST" ] || bye "Internal error (LNDEST definition)" - -if diff -s $TOPDIR/$LNDEST $LNSRC >/dev/null 2>&1 -then - echo " =====> $LNSRC and $TOPDIR/$LNDEST are in sync" -else - echo " =====> resetting $TOPDIR/$LNDEST to point to $LNSRC" - - ## At this point, we must create a link at the link destination - ## which points back to our link source. This requires us to - ## build a path FROM the destination back to the source - - #1) Get the source directory as an absolute path - SRCDIR=`pwd`/`dirname $LNSRC` - - #2) Get the destination directory as an absolute path (TOPDIR is - ## a relative path from the current directory). - cd $TOPDIR - ROOTDIR=`pwd` - DESTDIR=`dirname "$ROOTDIR"/"$LNDEST"` - - #3) Build a ../../ chain from the destination directory to the - ## current directory (ROOTDIR), which will become the prefix to - ## the path - T=`dirname $LNDEST` - while [ "$T" != "." ] - do - T=`dirname $T`;PFX=../"$PFX" - done - - #4) strip the absolute path prefix of SRCDIR leading to the current - ## directory, so we are left with the relative path from the current - ## directory to the link source directory. Prefix that with PFX. - LINK=`echo $LINK_ECHO_OPTION $SRCDIR | sed -e "s,$ROOTDIR/,$PFX,"`/`basename $LNDEST` - - #5) Create the links by changing to the destination directory, - ## removing any old versions of the link and creating a new one - [ -d `dirname $LNDEST` ] || mkdir -p `dirname $LNDEST` - cd `dirname $LNDEST` - rm -f `basename $LNDEST` - $LINKCMD $LINK `basename $LNDEST` -fi - -exit 0 diff --git a/Make/help.sh b/Make/help.sh deleted file mode 100644 index 5d30b067c..000000000 --- a/Make/help.sh +++ /dev/null @@ -1,155 +0,0 @@ -#!/bin/sh - -OS=$1 -TOPDIR=$2 -INST_LIBS=$3 -INST_PLUGINS=$4 -INST_INCLUDE=$5 -INST_EXAMPLES=$6 -INST_EXAMPLE_SRC=$7 -INST_DOC=$8 -INST_DATA=$9 - - -cat <<- EOF - -The following targets can be used with any subsystem as well as the top -level build (build in the OSG Root directory). Note that debug versions -and optimized version of targets reside in parallel. - - make - Same as 'make opt' - make opt - Makes optimized versions of all targets - make debug - Makes debug versions of all targets. - make clean - Removes all object files (both optimized and debug - versions) and Makedepend files. - make cleanopt - Removes optimized version of object files and - Makedepend files. - make cleandbg - Removes debug version of object files and Makedepend - files. - make cleandepend - Removes Makedepend file(s) (both optimized and debug - versions) - make cleandependopt - Removes optimized version Makedepend file(s) - make cleandependdbg - Removes debug version Makedepend file(s) - make cleantarget - Removes only targets but leaves object files (both - optimized and debug versions) - make cleantargetopt - Removes only optimized targets but leaves optimized - objects files. - make cleantargetdbg - Removes only debug targets but leaves debug object - files - make clobber - Removes object files and targets (both optimized and - debug versions) - make clobberopt - Removes optimized object files and targets - make clobberdbg - Removes debug object files and targets - make beautify - Pretty print C++ files - make docs - Builds documentation database for current target - make depend - Force a rebuild of the dependency file. Note that - dependency files are generated automatically during - builds. - - -Solaris, IRIX and Linux (some compilers) can build 64 bit targets. These -require the ARCH=64 argument. For example: - - make ARCH=64 - Same as 'make ARCH=64 opt' - make ARCH=64 opt - Builds 64 bit optimized targets - make ARCH=64 debug - Builds 64 bit debug versions of targets - make ARCH=64 clean - Removes all 64 bit object files (both optimized and - debug versions). - - etc. - -The following targets may only be issued from the top-level OSG build: - - make install - Install both execution environment and development - targets - make instbin - Install execution environment targets only. These - consist of libraries, plugins and example programs. - Libraries are installed in - o $INST_LIBS, - plugins are installed in - o $INST_PLUGINS, - and examples are installed in - o $INST_EXAMPLES - on $OS - - make instdev - Install development targets only. These consist of - header files, source code to the example programs, and - documentation. - Header files are install in - o $INST_INCLUDE, - example source code is installed in - o $INST_EXAMPLE_SRC, - and documentation is installed in - o $INST_DOC - on $OS - - make instlinks - Installs symbolic links at install locations for both - execution environment and development targets rather - than copyied files. Installing links is ideal for a - development environment for avoiding confusion about - which binaries are being run or linked to. - - make instlinksbin - Installs symbolic links at install locations for - execution environment targets only. - make instlinksdev - Installs symbolic links at install locations for - development targets only - make instclean - Removes installed targets (files or links) from - installation locations for both execution environment - and development targets - make instcleanbin - Removes installed targets from installation locations - for execution environment targets only - make instcleandev - Removes installed targets from installation locations - for defelopment targets only - -Note that the following variables can be used to directly override the default -installation locations for $OS. - - make INST_LIBS= \\ - INST_PLUGINS=\\ - INST_INCLUDE=\\ - INST_EXAMPLES=\\ - INST_EXAMPLE_SRC=\\ - INST_DOC=\\ - install - - - Installs libraries in , plugins in - , header files in - , examples in , - example source code in and - documentation in - -Note also that INST_LIBS, INST_PLUGINS, INST_INCLUDE, and INST_SHARE share -a common prefix by default: INST_LOCATION. Further INST_EXAMPLES, INST_EXAMPLE_SRC, -INST_DOC, and INST_DATA share a common prefix by default : INST_SHARE, which -is located under INST_LOCATION by default. This provides a short cut for the -above 'make' usage. For example, - - make INST_LOCATION=/usr/local/OpenSceneGraph \\ - INST_SHARE=/usr/share/OpenSceneGraph \\ - install - - -These values can be tested by reissuing 'make help' with these arguments. - -After doing a 'make install' or 'make instlinks', and if not already added, -add - - $INST_EXAMPLES - -to your PATH environmental variable to run the examples. If it is not already -present, add - - $INST_LIBS - -and - - $INST_PLUGINS - -to your LD_LIBRARY_PATH environmental variable. When compiling programs -using OSG headers add to your -I compile flags: - - $INST_INCLUDE - -EOF - -exit 0 diff --git a/Make/helprules b/Make/helprules deleted file mode 100644 index 60787752e..000000000 --- a/Make/helprules +++ /dev/null @@ -1,11 +0,0 @@ -help: - @sh $(TOPDIR)/Make/help.sh \ - $(OS) \ - $(TOPDIR) \ - $(INST_LIBS) \ - $(INST_PLUGINS) \ - $(INST_INCLUDE) \ - $(INST_DEMOS) \ - $(INST_DEMO_SRC) \ - $(INST_DOC) \ - $(INST_DATA) | more diff --git a/Make/instexamplesrc b/Make/instexamplesrc deleted file mode 100755 index 5754edaca..000000000 --- a/Make/instexamplesrc +++ /dev/null @@ -1,119 +0,0 @@ -#!/bin/sh - -TOPDIR=$1 -INST_LIBS=$2 -INST_INCLUDE=$3 -INST_SRC=$4 -INST_EXAMPLE_SRC=$5 -INSTALLCMD=$6 -COMPILER=$7 -OPTF=$8 -shift; shift; shift; shift; shift; shift; shift; shift; -DEPARG=$1 -LINKARGS=$2 -OSG_LIBS=$3 -FREETYPE_LIB=$4 -GLUT_LIB=$5 -GL_LIBS=$6 -X_LIBS=$7 -SOCKET_LIBS=$8 -shift; shift; shift; shift; shift; shift; shift; shift; -OTHER_LIBS=$1 -TIFF_LIB=$2 -MAKE=$3 - -copy_example_source() -{ - for d in `ls $TOPDIR/examples/ | grep -v CVS` - do - if [ -d $TOPDIR/examples/$d ] - then - THISDIR=`pwd` - cd $TOPDIR/examples/$d - [ -d $INST_EXAMPLE_SRC/$d ] || mkdir -m 0755 -p $INST_EXAMPLE_SRC/$d - echo " installing $d" - for f in `$MAKE __instfiles | grep -v $MAKE` - do - src=`echo $f | cut -f1 -d"="` - dst=`echo $f | cut -f2 -d"="` - if [ -z "$dst" ] ; then dst=$src; fi - ###echo $INSTALLCMD `pwd`/$src $INST_EXAMPLE_SRC/$d/$dst - $INSTALLCMD `pwd`/$src $INST_EXAMPLE_SRC/$d/$dst - done - cd $THISDIR - fi - done -} - -generate_makedefs() -{ - cat <<-EOF - -TOPDIR ?= ../ -THISDIR = . -INC = -I$INST_INCLUDE -I./ -DEF = $DEF -CXXFLAGS = \$(ARCHARGS) $OPTF \$(DEF) \$(INC) -LDFLAGS = \$(ARCHARGS) $OPTF -L$INST_LIBS $LINKARGS -OBJS = \$(C++FILES:.cpp=.o) \$(CXXFILES:.cpp=.o) \$(CFILES:.c=.o) -C++ = $COMPILER -OSG_LIBS = $OSG_LIBS -FREETYPE_LIB = $FREETYPE_LIB -GLUT_LIB = $GLUT_LIB -GL_LIBS = $GL_LIBS -X_LIBS = $X_LIBS -SOCKET_LIBS = $SOCKET_LIBS -OTHER_LIBS = $OTHER_LIBS -TIFF_LIB = $TIFF_LIB -VPATH = .. - -EOF -} - - - -generate_makerules() -{ - cat <<-EOF1 | sed 's/TAB/ /' - -all : \$(EXEC) \$(LIB) \$(PLUGIN) - -\$(EXEC) : Makedepend \$(OBJS) -TAB\$(C++) \$(LDFLAGS) \$(OBJS) \$(LIBS) -o \$@ - -\$(LIB) \$(PLUGIN) : \$(OBJS) -TAB\$(C++) \$(LDFLAGS) \$(SHARED) \$(OBJS) \$(LIBS) -o \$@ - -clean : -TABrm -f \$(OBJS) \$(MAKEDEPEND) - -clobber : clean -TABrm -f \$(EXEC) \$(LIB) \$(PLUGIN) - - -Makedepend : \$(CXXFILES) \$(CFILES) -TAB\$(C++) \$(INC) $DEPARG \$? > \$@ - - -.SUFFIXES: .cpp .o -.cpp.o: -TAB\$(C++) \$(CXXFLAGS) -c $< - -sinclude Makedepend - -EOF1 -} - - -[ -d $INST_SRC/Make ] || mkdir -m 0755 -p $INST_SRC/Make - -echo =========== Installing Example Source Code ================= - -echo " generating make files ..." -generate_makedefs > $INST_SRC/Make/makedefs -generate_makerules > $INST_SRC/Make/makerules - -echo " copying example files ..." -copy_example_source - -exit 0 diff --git a/Make/instrules b/Make/instrules deleted file mode 100644 index a7b0f620c..000000000 --- a/Make/instrules +++ /dev/null @@ -1,165 +0,0 @@ -install : - @rm -f $(INSTLOGFILE) - @$(MAKE) __instbin __instdev - @cat $(INSTLOGFILE) - -instbin instdev : - @$(MAKE) __$@ - -__instbin: - @$(MAKE) INSTSRC=$(TOPDIR)/bin/$(OS)$(ARCH) INSTDEST=$(INST_EXAMPLES) \ - INSTALL?="$(INSTBINCMD)" __install - @$(MAKE) INSTSRC=$(TOPDIR)/lib/$(OS)$(ARCH) INSTDEST=$(INST_LIBS) \ - INSTALL?="$(INSTBINCMD)" __install - @$(MAKE) INSTSRC=$(TOPDIR)/lib/$(OS)$(ARCH)/osgPlugins INSTDEST=$(INST_PLUGINS) \ - INSTALL?="$(INSTBINCMD)" __install -ifdef IMP_LIB_EXT - @$(MAKE) INSTSRC=$(TOPDIR)/bin/$(OS)$(ARCH)/osgPlugins INSTDEST=$(INST_EXAMPLES)/osgPlugins \ - INSTALL?="$(INSTBINCMD)" __install -endif - @echo >> $(INSTLOGFILE) - @echo " Run-time environment installation successful. Add " \ - >> $(INSTLOGFILE) - @echo " $(INST_EXAMPLES)" \ - >> $(INSTLOGFILE) - @echo " to your PATH environmental variable, and" \ - >> $(INSTLOGFILE) - @echo " $(INST_LIBS) and $(INST_PLUGINS)" \ - >> $(INSTLOGFILE) - @echo " to your LD_LIBRARY_PATH if not already present." \ - >> $(INSTLOGFILE) - @echo >> $(INSTLOGFILE) - -__instdev: - @for d in `ls -1 $(TOPDIR)/include/ | grep -v CVS`; \ - do \ - if [ -d $(TOPDIR)/include/$$d ]; \ - then \ - $(MAKE) INSTSRC=$(TOPDIR)/include/$$d INSTDEST=$(INST_INCLUDE)/$$d \ - INSTALL?="$(INSTDEVCMD)" __install; \ - fi \ - done - @$(TOPDIR)/Make/instexamplesrc \ - $(TOPDIR) \ - $(INST_LIBS) \ - $(INST_INCLUDE) \ - $(INST_SRC) \ - $(INST_EXAMPLE_SRC) \ - "$(INSTDEVCMD)" \ - "$(C++)" \ - "$(OPTF)" \ - "$(DEPARG)" \ - "$(LINKARGS)" \ - "$(OSG_LIBS)" \ - "$(FREETYPE_LIB)" \ - "$(GLUT_LIB)" \ - "$(GL_LIBS)" \ - "$(X_LIBS)" \ - "$(SOCKET_LIBS)" \ - "$(OTHER_LIBS)" \ - "$(TIFF_LIB)" \ - $(MAKE) - - - @echo \ - >> $(INSTLOGFILE) - @echo " Development environment installation successful. Add" \ - >> $(INSTLOGFILE) - @echo " -I$(INST_INCLUDE)" \ - >> $(INSTLOGFILE) - @echo " compile flag when compiling with OSG header files." \ - >> $(INSTLOGFILE) - @echo " Example programs can be found at $(INST_EXAMPLE_SRC)." \ - >> $(INSTLOGFILE) - @echo >> $(INSTLOGFILE) - -instlinks : - @rm -f $(INSTLOGFILE) - $(MAKE) INSTBINCMD="$(INSTLINKBINCMD)" __instbin - $(MAKE) INSTDEVCMD="$(INSTLINKDEVCMD)" __instdev - @cat $(INSTLOGFILE) - -instlinksbin : - @rm -f $(INSTLOGFILE) - $(MAKE) INSTBINCMD="$(INSTLINKBINCMD)" __instbin - @cat $(INSTLOGFILE) - -instlinksdev : - @rm -f $(INSTLOGFILE) - @$(MAKE) INSTDEVCMD="$(INSTLINKDEVCMD)" __instdev - @cat $(INSTLOGFILE) - - -instclean : instcleanbin instcleandev - -instcleanbin : - @$(MAKE) INSTSRC=$(TOPDIR)/bin/$(OS)$(ARCH) INSTDEST=$(INST_EXAMPLES) \ - INSTALL?="$(INSTBINCMD)" __instclean - @$(MAKE) INSTSRC=$(TOPDIR)/lib/$(OS)$(ARCH) INSTDEST=$(INST_LIBS) \ - INSTALL?="$(INSTBINCMD)" __instclean - @$(MAKE) INSTSRC=$(TOPDIR)/lib/$(OS)$(ARCH)/osgPlugins INSTDEST=$(INST_PLUGINS) \ - INSTALL?="$(INSTBINCMD)" __instclean - -instcleandev : - @for d in `ls -1 $(TOPDIR)/include/ | grep -v CVS`; \ - do \ - if [ -d $(TOPDIR)/include/$$d ]; \ - then \ - $(MAKE) INSTSRC=$(TOPDIR)/include/$$d INSTDEST=$(INST_INCLUDE)/$$d \ - INSTALL?="$(INSTDEVCMD)" __instclean; \ - fi \ - done - @for d in `ls -1 $(TOPDIR)/examples | grep -v CVS`; \ - do \ - if [ -d $(TOPDIR)/examples/$$d ]; \ - then \ - $(MAKE) INSTSRC=$(TOPDIR)/examples/$$d INSTDEST=$(INST_EXAMPLE_SRC)/$$d \ - INSTALL?="$(INSTDEVCMD)" __instclean; \ - fi \ - done - -__install : - @[ -n "$(INSTSRC)" ] || echo "Internal error (INSTSRC definition)" - @[ -n "$(INSTSRC)" ] && echo > /dev/null - @[ -n "$(INSTDEST)" ] || echo "Internal error (INSTDEST definition)" - @[ -n "$(INSTDEST)" ] && echo > /dev/null - @[ -d $(INSTDEST) ] || mkdir -p $(INSTDEST) - @cd $(INSTSRC); \ - THISDIR=`pwd`; \ - if [ -n "`ls -1 | grep -v CVS`" ]; then \ - for f in `ls -1 | grep -v CVS`; \ - do \ - if [ -f $$f ] ; \ - then \ - INSTPATH=$$THISDIR/$$f; \ - $(INSTALL) "$$INSTPATH" "$(INSTDEST)/$$f"; \ - fi \ - done \ - fi - -__instclean : - @[ -n "$(INSTSRC)" ] || echo "Internal error (INSTSRC definition)" - @[ -n "$(INSTSRC)" ] && echo > /dev/null - @[ -n "$(INSTDEST)" ] || echo "Internal error (INSTDEST definition)" - @[ -n "$(INSTDEST)" ] && echo > /dev/null - @if [ -d $(INSTDEST) ] ; \ - then \ - cd $(INSTSRC); \ - if [ -n "`ls -1 | grep -v CVS`" ]; then \ - for f in `ls -1 | grep -v CVS`; \ - do \ - if [ -f $$f ] ; \ - then \ - echo "rm -f $(INSTDEST)/$$f"; \ - rm -f $(INSTDEST)/$$f; \ - fi \ - done \ - fi; \ - empty=`ls $(INSTDEST)`; \ - if [ -z "$$empty" ]; \ - then \ - rm -rf $(INSTDEST); \ - fi \ - fi - - diff --git a/Make/makedefs b/Make/makedefs deleted file mode 100644 index c839af0ca..000000000 --- a/Make/makedefs +++ /dev/null @@ -1,748 +0,0 @@ -SHELL = /bin/sh -OS := $(shell uname) - -## Set up dependencies -ifneq ("$(OSG_DEPENDENCIES)","") - include $(OSG_DEPENDENCIES) -else - include $(TOPDIR)/Make/dependencies -endif - -## We don't care about architectural distinguishers in the OS -## such as IRIX64, IRIX32, etc. so we truncate IRIX?? to IRIX -ifeq ($(findstring IRIX,$(OS)),IRIX) -OS := IRIX -endif - -## Make CYGWIN_XXXX CYGWIN so it's "Windows cross platform" :) -ifeq ($(findstring CYGWIN,$(OS)),CYGWIN) -OS := CYGWIN -#OS := MINGW -endif - -## Make MINGW_XXXX MINGW so it's "Windows cross platform" :) -ifeq ($(findstring MINGW,$(OS)),MINGW) -OS := MINGW -endif - -# TOPDIR needs to be redefined for every GNUmakefile -TOPDIR ?= ../ -THISDIR = . -MAKEDEPEND = ignore - -####################################################################### -## -## VERSIONING SEMANTICS -## -## Version consistes of . . - -## Where: -## major : Production (0 = pre-production) -## minor : 0-7 = Production minor, 8 = Alpha, 9 = Beta -## release : Release tag -## revision: Release revision - 0 = development (cutting edge). -## -## Usage: -## Default - VERSION_REVISION is set to the value defined here -## Env variable OSG_VERSION_REVISION overrides default -## e.g.: -## % setenv OSG_VERSION_REVISION 5 -## % make version -## Command line overrides env variable -## % make VERSION_REVISION= -####################################################################### -VERSION_MAJOR = 1 -VERSION_MINOR = 2 -VERSION_RELEASE = 0 -VERSION_REVISION ?= 0 -ifneq (,$(OSG_VERSION_REVISION)) -VERSION_REVISION = $(OSG_VERSION_REVISION) -endif -VERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_RELEASE) - -INC = -I$(TOPDIR)/include - -############################################################################ -## NOTE - Semantics for the use of ARCH, ARCHARGS, and ARCHINST parameters -## ARCH - must be defined if the OS supports both 64 and 32 bit -## architectures may remain undefined if it does not. -## ARCHARGS - Compiler directives to indicate for which architecture -## to build for -## ARCHINST - Installation target directory. Define if the OS supports -## more than one architecture (32 and 64). -## for ARCH=32 - define ARCHINST only if the system uses an -## extension on 'lib' to indicate 32 bit. e.g. -## IRIX defines /usr/lib32 -## for ARCH=64 - Always define ARCHINST. Even if the OS -## doesn't make a distinction, we will. -############################################################################ - -CXXFLAGS = $(ARCHARGS) $(DOF) $(DEF) $(INC) -LDFLAGS = $(ARCHARGS) $(DOF) $(LINKARGS) -L$(TOPDIR)/lib/$(OS)$(ARCH) -OBJS = $(C++FILES:.cpp=.o) \ - $(CXXFILES:.cpp=.o) \ - $(CFILES:.c=.o) \ - -DOF = $(OPTF) -DEBUGDIR = $(OS)$(ARCH).Debug -OPTDIR = $(OS)$(ARCH).Opt -BININST = bin/$(OS)$(ARCH)/ -PLUGININST = lib/$(OS)$(ARCH)/osgPlugins -LIBINST = lib/$(OS)$(ARCH) - -INST_LOCATION ?= /usr/local -INST_LIBS = $(INST_LOCATION)/lib$(ARCHINST) -INST_PLUGINS = $(INST_LOCATION)/lib$(ARCHINST)/osgPlugins -INST_INCLUDE = $(INST_LOCATION)/include -INST_SHARE = $(INST_LOCATION)/share -INST_EXAMPLES = $(INST_SHARE)/OpenSceneGraph/bin -INST_SRC = $(INST_SHARE)/OpenSceneGraph/src -INST_DOC = $(INST_SHARE)/OpenSceneGraph/doc -INST_DATA = $(INST_SHARE)/OpenSceneGraph/data -INST_EXAMPLE_SRC = $(INST_SRC)/examples -LINK = ln -sf -INSTBINCMD = install -m 755 -INSTDEVCMD = install -m 644 -INSTLINKBINCMD = $(LINK) -INSTLINKDEVCMD = $(LINK) - -LIB_PREFIX = lib -LIB_EXT = so -EXE_EXT = - -PLUGIN_PREFIX = osgdb_ -WRAPPER_PREFIX = osgwrapper_ -PLUGIN_EXT = so -MAKEDIST = echo " === Distribution build is not implemented yet for $(OS)"; printf "\n" -INSTLOGFILE = /tmp/.osg_inst_log - -ifneq ("$(OPENTHREADS_INC_DIR)","") -INC += -I$(OPENTHREADS_INC_DIR) -endif - -ifneq ("$(OPENTHREADS_LIB_DIR)","") -LDFLAGS += -L$(OPENTHREADS_LIB_DIR) -endif - - -RECURSIVE_TARGETS = \ - opt \ - debug \ - static \ - staticdebug \ - clean \ - cleandepend \ - cleandependopt \ - cleandependdbg \ - cleandbg \ - cleanopt \ - cleantarget \ - cleantargetopt \ - cleantargetdbg \ - clobber \ - clobberdbg \ - clobberopt \ - beautify \ - docs \ - depend \ - -STATICLIB = $(LIB:.$(LIB_EXT)=.a) -STATICPLUGIN = $(PLUGIN:.$(PLUGIN_EXT)=.a) - -#### SUN OS Specific definitions -ifeq ($(OS),SunOS) - - #### if using g++ on a sun - ifeq ($(COMPILER),gnu) - C++ = g++ - DEPARG = -M - INC += - DEF += -W -Wall -fPIC -fpermissive - OPTF = -O2 - DBGF = -g -DOSG_COMPILE_UNIT_TESTS - SHARED = -shared -fPIC - ARCH = 32 - ifeq ($(ARCH),64) - ARCHARGS = -m64 -DARCH64 - ARCHINST = 64 - else - ARCHARGS = - endif - GIF_LIBS = -lgif - TIFF_LIB = -ltiff - JPEG_LIBS = -ljpeg - PNG_LIBS = -lpng -lz - OTHER_LIBS = -lOpenThreads - - #### using forte compilers (default) - else - C++ = CC - DEPARG = -xM1 - INC += - DEF += -features=extensions -w -mt -KPIC - OPTF = -xO4 - DBGF = -g -DOSG_COMPILE_UNIT_TESTS - SHARED = -G - ARCH = 32 - ifeq ($(ARCH),64) - ARCHARGS = -xarch=v9 -DARCH64 - ARCHINST = 64 - else - ARCHARGS = - ARCHINST = - endif - OTHER_LIBS = -lCstd -lOpenThreads - LINKARGS = -mt - GIF_LIBS = /usr/local/lib/libgif.a - TIFF_LIB = /usr/local/lib/libtiff.a - JPEG_INCLUDE = -I/usr/local/include - JPEG_LIBS = /usr/local/lib/libjpeg.a - PNG_LIBS = /usr/local/lib/libpng.a /usr/local/lib/libz.a - endif - - DYNAMICLIBRARYLIB = -ldl - OSG_LIBS = -losgGA -losgDB -losgUtil -losg - GL_LIBS = -lGLU -lGL - GLUT_LIBS = -lglut - X_INC = -I/usr/X11R6/include - X_LIBS = -lXext -lXmu -lXi -lX11 - SOCKET_LIBS = -lsocket -lnsl - INSTBINCMD = cp - INSTDEVCMD = cp - INST_LOCATION ?= /opt/OpenSceneGraph - MAKEDIST = $(TOPDIR)/Make/makepkg - OTHER_LIBS = -lOpenThreads -lmtsk - - FREETYPE_INCLUDE = `freetype-config --cflags` - FREETYPE_LIB = `freetype-config --libs` - - XINE_INCLUDES = `xine-config --cflags` - XINE_LIBS = `xine-config --libs` - -endif - -#### IRIX Specific definitions -ifeq ($(OS),IRIX) - INSTBINCMD = cp - INSTDEVCMD = cp - CXX = CC - ifeq ($(CXX),CC) - LINKARGS = -L${TOPDIR}/$(LIBINST) -LANG:std -OPT:Olimit=0 - C++ = CC - DEPARG = -M - INC += -I${TOPDIR}/include -I/usr/freeware/include - LDFLAGS += -L/usr/local/lib - DEF += -LANG:libc_in_namespace_std=OFF -LANG:std -OPT:Olimit=0 \ - -DEBUG:woff=1681 -DEBUG:woff=1682 -DEBUG:woff=3303 \ - -MDupdate $(MAKEDEPEND) - OPTF = -O2 - DBGF = -g -DOSG_COMPILE_UNIT_TESTS - SHARED = -shared - PFLIBS = \ - -lpf3ds -lpfdem -lpfdted -lpfdwb -lpfdxf -lpfevt \ - -lpfflt -lpfgds -lpfgfo -lpfim -lpflsa -lpflsb \ - -lpfnff -lpfobj -lpfpegg -lpfpfb -lpfphd -lpfpts \ - -lpfrot -lpfscale -lpfsgf -lpfsgo -lpfsphere -lpfsv \ - -lpftri -lpfunc -lpfvct -lpfdu -lpfutil -lpf -all -limage - ARCH = 32 - ifeq ($(ARCH),64) - ARCHARGS = -64 -DARCH64 - ARCHINST = 64 - LINKARGS += -L/usr/freeware/lib64 - PF_XTRA_LIBS = -L/usr/lib64/libpfdb -rpath /usr/lib64/libpfdb \ - $(PFLIBS) - else - ARCHARGS = -n32 - ARCHINST = 32 - LINKARGS += -L/usr/freeware/lib32 - PF_XTRA_LIBS = -L/usr/lib32/libpfdb -rpath /usr/lib32/libpfdb \ - $(PFLIBS) - endif - else - LIBS = -lstdc++ - LINKARGS = -L${TOPDIR}/$(LIBINST) - C++ = g++ - INC += -I${TOPDIR}/include -I/usr/freeware/include - DEF += -fPIC -W -Wno-unused - OPTF = -O2 - DBGF = -g -DOSG_COMPILE_UNIT_TESTS - SHARED = -shared - PFLIBS = \ - -lpf3ds -lpfdem -lpfdted -lpfdwb -lpfdxf -lpfevt \ - -lpfflt -lpfgds -lpfgfo -lpfim -lpflsa -lpflsb \ - -lpfnff -lpfobj -lpfpegg -lpfpfb -lpfphd -lpfpts \ - -lpfrot -lpfscale -lpfsgf -lpfsgo -lpfsphere -lpfsv \ - -lpftri -lpfunc -lpfvct -lpfdu -lpfutil -lpf -all -limage - ARCH = 32 - ifeq ($(ARCH),64) - ARCHARGS = -mabi=64 -mips4 -DARCH64 - ARCHINST = 64 - LINKARGS += -L/usr/freeware/lib64 - PF_XTRA_LIBS = -L/usr/lib64/libpfdb -rpath /usr/lib64/libpfdb \ - $(PFLIBS) - else - ARCHARGS = -mabi=n32 -mips4 - ARCHINST = 32 - LINKARGS += -L/usr/freeware/lib32 - PF_XTRA_LIBS = -L/usr/lib32/libpfdb -rpath /usr/lib32/libpfdb \ - $(PFLIBS) - endif - endif - - DYNAMICLIBRARYLIB = - OSG_LIBS = -losgGA -losgDB -losgUtil -losg - GL_LIBS = -lGLU -lGL - GLUT_LIBS = -lglut - X_INC = -I/usr/X11R6/include - X_LIBS = -lXext -lXi -lXmu -lX11 - SOCKET_LIBS = - OTHER_LIBS = -lm -lOpenThreads - PNG_LIBS = -lpng - JPEG_LIBS = -ljpeg - TIFF_LIB = -ltiff - GIF_LIBS = -lungif - MAKEDIST = $(TOPDIR)/Make/makeirixdist - - FREETYPE_INCLUDE = `freetype-config --cflags` - FREETYPE_LIB = `freetype-config --libs` - - XINE_INCLUDES = `xine-config --cflags` - XINE_LIBS = `xine-config --libs` - -endif - -#### Linux specific definitions - -ifeq ($(OS),Linux) - - ifeq (x$(CXX),x) - C++ = g++ - else - C++ = $(CXX) - endif - - DEPARG = -M - INC += - - ifeq ($(COMPILER),intel) - C++ = icpc - LIBS = -lgcc_s - DEF += -fPIC -x c++ -cxxlib-gcc -gcc-version=323 - OPTF = -O2 - DBGF = -g -DOSG_COMPILE_UNIT_TESTS - LDFLAGS += -L/usr/X11R6/lib64 - ifeq ($(SYSARCH),ia64) - ARCHARGS = - ARCH = IA64 - ARCHINST = IA64 - else - ARCHARGS = - ARCH = 32 - ARCHINST = - endif - else - -ifeq ("$(COMPILE_OSG_OP_OT_WITH_SONAMES)","YES") - LDFLAGS += -Wl,-soname -Wl,$@.0 -endif - -# LDFLAGS += `getconf LFS_LDFLAGS` -# DEF += `getconf LFS_CFLAGS` - - LIBS = -lstdc++ -# DEF += -W -Wall -fPIC -pipe -Woverloaded-virtual - DEF += -W -Wall -fPIC -pipe - OPTF = -O2 - DBGF = -g -DOSG_COMPILE_UNIT_TESTS - SYSARCH := $(shell arch) - ifeq ($(SYSARCH),x86_64) - ARCHARGS = - ARCH = 64 - ARCHINST = 64 - else - ARCHARGS = - ARCH = 32 - ARCHINST = - endif - endif - - SHARED = -shared - ifeq ($(SYSARCH),x86_64) - LINKARGS = -L/usr/X11R6/lib64 - else - LINKARGS = -L/usr/X11R6/lib - endif - DYNAMICLIBRARYLIB = -ldl - OSG_LIBS = -losgGA -losgDB -losgUtil -losg - GL_LIBS = -lGLU -lGL - GLUT_LIBS = -lglut - X_INC = -I/usr/X11R6/include - X_LIBS = -lXi -lXmu -lX11 - PF_XTRA_LIBS = -L/usr/lib/libpfdb -Xlinker -rpath /usr/lib/libpfdb \ - -lpfdu -lpfutil -lpf - SOCKET_LIBS = - OTHER_LIBS = -lOpenThreads - PNG_LIBS = -lpng - JPEG_LIBS = -ljpeg - TIFF_LIB = -ltiff - GIF_LIBS = -lungif - MAKEDIST = $(TOPDIR)/Make/makerpms - - ifeq ("$(PROFILER)","gprof") - DEF += -pg - endif - - ifeq ("$(PROFILER)","FunctionCheck") - DEF += -finstrument-functions - OTHER_LIBS += -lfnccheck - endif - - FREETYPE_INCLUDE = `freetype-config --cflags` - FREETYPE_LIB = `freetype-config --libs` - - XINE_INCLUDES = `xine-config --cflags` - XINE_LIBS = `xine-config --libs` - -endif - -#### FreeBSD specific definitions -ifeq ($(OS),FreeBSD) - SYSARCH := $(shell uname -p) - ifeq (x$(CXX),x) - C++ = g++ - else - C++ = $(CXX) - endif - ifeq (x$(PTHREAD_CFLAGS),x) - PTHREAD_CFLAGS = -pthread - endif - ifeq (x$(PTHREAD_LIBS),x) - PTHREAD_LIBS = -pthread - endif - ifeq (x$(ARCH),x) - ARCH = $(SYSARCH) - endif - DEPARG = -MM - INC += -I/usr/local/include -I/usr/X11R6/include - DEF += -W -Wall $(PTHREAD_CFLAGS) -pipe - OPTF = -O2 - DBGF = -g -DOSG_COMPILE_UNIT_TESTS - SHARED = -shared - ifeq ($(SYSARCH),amd64) - ARCHARGS = -fPIC - ARCHINST = - else - ARCHARGS = - ARCHINST = - endif - LINKARGS = -L/usr/X11R6/lib -L/usr/local/lib -rpath /usr/local/lib $(PTHREAD_CFLAGS) - DYNAMICLIBRARYLIB = - OSG_LIBS = -losgGA -losgDB -losgUtil -losg - GL_LIBS = -lGLU -lGL - GLUT_LIBS = -lglut - X_INC = -I/usr/X11R6/include - X_LIBS = -lXmu -lX11 - SOCKET_LIBS = - OTHER_LIBS = -lOpenThreads - PNG_LIBS = -lpng - JPEG_LIBS = -ljpeg - TIFF_LIB = -ltiff - GIF_LIBS = -lungif - - FREETYPE_INCLUDE = `freetype-config --cflags` - FREETYPE_LIB = `freetype-config --libs` - - XINE_INCLUDES = `xine-config --cflags` - XINE_LIBS = `xine-config --libs` - -endif - -#### MacOS X specific definitions -ifeq ($(OS),Darwin) - ifeq (x$(CXX),x) - C++ = g++ - else - C++ = $(CXX) - endif - - #### Default to AGL? Will try it temporary while waiting for feedback - USE_AGL ?= yes - - FINC += -F/System/Library/Frameworks - - ifeq ($(USE_AGL),yes) - - DEF += -D__USE_OSX_AGL_IMPLEMENTATION__ - INC += $(FINC) - LDFLAGS += $(FINC) - X_INC = - X_LIBS = - GL_LIBS = -framework OpenGL $(CARBON_LIB) - GLUT_LIBS = -framework GLUT - - else - ifeq ($(USE_CGL),yes) - - DEF += -D__USE_OSX_CGL_IMPLEMENTATION__ - INC += $(FINC) - LDFLAGS += $(FINC) - X_INC = - X_LIBS = - GL_LIBS = -framework OpenGL $(CARBON_LIB) - GLUT_LIBS = -framework GLUT - - else - - INC += $(FINC) -I$(SDKPATH)/usr/X11R6/include - LDFLAGS += $(FINC) -L$(SDKPATH)/usr/include -L$(SDKPATH)/usr/X11R6/lib -L/sw/lib - X_INC = -I$(SDKPATH)/usr/X11R6/include - X_LIBS = -lX11 - GL_LIBS = -lGL -lGLU - GLUT_LIBS = -lGLUT - - endif - endif - - DEF += -Wall - OPTF = -O2 - DBGF = -g -DOSG_COMPILE_UNIT_TESTS - DEPARG = -M $(DEF) - SHARED = -dynamic - ARCH = 32 - ARCHINST = - ARCHARGS = - LINKARGS = - DYNAMICLIBRARYLIB = - OSG_LIBS = -losgGA -losgDB -losgUtil -losg - CARBON_LIB = -framework Carbon - SOCKET_LIBS = - OTHER_LIBS = -lm -lstdc++ -lobjc -lOpenThreads - LIB_EXT = dylib - LIBVERSION = -current_version $(VERSION) \ - -compatibility_version \ - $(VERSION_MAJOR).$(VERSION_MINOR).0 - - ifeq ($(DARWIN_QUICKTIME),yes) - DEF += -DDARWIN_QUICKTIME - endif - - QUICKTIME = -framework QuickTime $(CARBON_LIB) - PNG_LIBS = -lpng -lz - JPEG_LIBS = -ljpeg - GIF_LIBS = -lungif - TIFF_LIB = -ltiff -lz -ljpeg - -# FREETYPE_INCLUDE = `freetype-config --cflags` -# FREETYPE_LIB = `freetype-config --libs` - - FREETYPE_INCLUDE = -I$(SDKPATH)/usr/X11R6/include -I$(SDKPATH)/usr/X11R6/include/freetype2 - FREETYPE_LIB = -L$(SDKPATH)/usr/X11R6/lib -lfreetype - - XINE_INCLUDES = `xine-config --cflags` - XINE_LIBS = `xine-config --libs` - -endif - -#### Cygwin specific definitions -ifeq ($(OS),CYGWIN) - C++ = c++ - DEPARG = -M -DWIN32 - INC += - LIB = - DEF += -DWIN32 -DNOMINMAX -W -Wall -mnop-fun-dllimport - OPTF = -O2 - DBGF = -g -DOSG_COMPILE_UNIT_TESTS - SHARED = -shared \ - -Wl,--out-implib,lib$(TARGET_BASENAME).dll.a \ - -Wl,--export-all-symbols - - EXE_EXT =.exe - ARCH = 32 - ARCHINST = - ARCHARGS = - LINKARGS = -W -Wall - DYNAMICLIBRARYLIB = - OSG_LIBS = -losgGA -losgDB -losgUtil -losg - GL_LIBS = -lglu32 -lopengl32 - GLUT_LIBS = -lglut - X_INC = - X_LIBS = -lgdi32 -luser32 - SOCKET_LIBS = - OTHER_LIBS = -lOpenThreads - PNG_LIBS = -lpng -lz - JPEG_LIBS = -L/usr/local/lib -ljpeg - GIF_LIBS = -lungif - TIFF_LIB = -ltiff -lz -ljpeg - - FREETYPE_INCLUDE = `freetype-config --cflags` - FREETYPE_LIB = `freetype-config --libs` - - XINE_INCLUDES = `xine-config --cflags` - XINE_LIBS = `xine-config --libs` - - LIBINST = bin/$(OS)$(ARCH) - IMP_LIBINST = lib/$(OS)$(ARCH) - PLUGININST = bin/$(OS)$(ARCH)/osgPlugins - IMP_PLUGININST = lib/$(OS)$(ARCH)/osgPlugins - - LIB_PREFIX = cyg - LIB_EXT = dll - IMP_LIB_EXT = dll.a - PLUGIN_EXT = dll - LINK = cp -f - INST_LOCATION = /usr/local/OpenSceneGraph - INST_INCLUDE = $(INST_LOCATION)/include - INST_SHARE_PREFIX = $(INST_LOCATION) - INST_SRC = $(INST_SHARE_PREFIX)/src - INST_EXAMPLES = $(INST_SHARE_PREFIX)/bin - INST_EXAMPLE_SRC = $(INST_SHARE_PREFIX)/src/demos - INST_DOC = $(INST_SHARE_PREFIX)/doc - INST_DATA = $(INST_SHARE_PREFIX)/data - MAKEDIST = $(TOPDIR)/Make/makeinnosetup -endif - -#### Mingw specific definitions -ifeq ($(OS),MINGW) - C++ = c++ -mthreads -# -fomit-frame-pointer -march=pentium3 -msse -mmmx -mfpmath=sse - DEPARG = -M - INC += - DEF += -DWIN32 -Wall -# -W - OPTF = -O2 - DBGF = -g -DOSG_COMPILE_UNIT_TESTS - SHARED = -shared -mthreads \ - -Wl,--out-implib,lib$(TARGET_BASENAME).dll.a \ - -Wl,--export-all-symbols - - EXE_EXT =.exe - ARCH = - ARCHINST = - ARCHARGS = - LINKARGS = -W -Wall - DYNAMICLIBRARYLIB = - OSG_LIBS = -losgGA -losgDB -losgUtil -losg - GL_LIBS = -lglu32 -lopengl32 - GLUT_LIBS = -lglut - X_INC = - X_LIBS = -lgdi32 -luser32 - SOCKET_LIBS = -lws2_32 - OTHER_LIBS = -lOpenThreads - PNG_LIBS = -lpng -lz - JPEG_LIBS = -ljpeg - GIF_LIBS = -lungif - TIFF_LIB = -ltiff -lz -ljpeg - - FREETYPE_INCLUDE = `freetype-config --cflags` - FREETYPE_LIB = `freetype-config --libs` - - XINE_INCLUDES = `xine-config --cflags` - XINE_LIBS = `xine-config --libs` - - LIBINST = bin/$(OS)$(ARCH) - IMP_LIBINST = lib/$(OS)$(ARCH) - PLUGININST = bin/$(OS)$(ARCH)/osgPlugins - IMP_PLUGININST = lib/$(OS)$(ARCH)/osgPlugins - - LIB_PREFIX = lib - LIB_EXT = dll - IMP_LIB_EXT = dll.a - PLUGIN_EXT = dll - LINK = cp -f - INST_LOCATION = /usr/local/OpenSceneGraph - INST_INCLUDE = $(INST_LOCATION)/include - INST_SHARE_PREFIX = $(INST_LOCATION) - INST_SRC = $(INST_SHARE_PREFIX)/src - INST_EXAMPLES = $(INST_SHARE_PREFIX)/bin - INST_EXAMPLE_SRC = $(INST_SHARE_PREFIX)/src/examples - INST_DOC = $(INST_SHARE_PREFIX)/doc - INST_DATA = $(INST_SHARE_PREFIX)/data -endif - -#### HP-UX Specific definitions -# contributed by tino.schwarze@informatik.tu-chemnitz.de -# replaced by Olaf Flebb for use with aCC compiler - -ifeq ($(OS),HP-UX) - CXX = aCC -AA -mt - C++ = $(CXX) - DEPARG = -w +make -E - INC += -I/opt/graphics/OpenGL/include -I/usr/contrib/X11R6/include -D_LARGEFILE64_SOURCE -D_XOPEN_SOURCE_EXTENDED - DEF += +Z -z - OPTF = +O2 - DBGF = -g - SHARED = -b +Z -z -Wl,+s - ARCH = 32 - LDFLAGS += -L/opt/graphics/OpenGL/lib -L/usr/contrib/X11R6/lib/ - LINKARGS = -lpthread - LIB_EXT = sl - PLUGIN_EXT = sl - DYNAMICLIBRARYLIB = -ldld - - - OSG_LIBS = -losgGA -losgDB -losgUtil -losg - GL_LIBS = -L/opt/graphics/OpenGL/lib -lGLU -lGL - GLUT_LIBS = -lglut - X_INC = -I/usr/X11R6/include - X_LIBS = -L/usr/lib/X11R6 -lXext -lXi -lX11 - SOCKET_LIBS = - OTHER_LIBS = -lm -lOpenThreads - PNG_INCLUDE = -I/usr/local/include/libpng -I/usr/local/include/ - PNG_LIBS = -L/usr/local/lib -lpng -lz - JPEG_INCLUDE = -I/usr/local/include - JPEG_LIBS = -L/usr/local/lib -ljpeg - TIFF_INCLUDE = -I/usr/local/include - TIFF_LIB = -L/usr/local/lib -ltiff - GIF_INCLUDE = -I/opt/libungif/include - GIF_LIBS = -L/opt/libungif/lib -lungif - - FREETYPE_INCLUDE = `freetype-config --cflags` - FREETYPE_LIB = `freetype-config --libs` - - INSTXCMD = install -c -m 755 - INSTRCMD = install -c -m 644 - - INSTBINCMD = install -c -m 755 - INSTDEVCMD = install -c -m 644 -endif - - -ifeq ($(OS),AIX) - CXX = g++ - C++ = $(CXX) - DEPARG = -M - INC += - DEF += - OPTF = -O - DBGF = -g - SHARED = - ARCH = 32 - LDFLAGS += - LINKARGS = -lpthread - LIB_EXT = sl - PLUGIN_EXT = sl - DYNAMICLIBRARYLIB = -ldld - - - OSG_LIBS = -losgGA -losgDB -losgUtil -losg - GL_LIBS = -lGLU -lGL - X_INC = - X_LIBS = -lXext -lXi -lX11 - SOCKET_LIBS = - OTHER_LIBS = -lm -lOpenThreads - PNG_INCLUDE = -I/usr/local/include/libpng -I/usr/local/include/ - PNG_LIBS = -L/usr/local/lib -lpng -lz - JPEG_INCLUDE = -I/usr/local/include - JPEG_LIBS = -L/usr/local/lib -ljpeg - TIFF_INCLUDE = -I/usr/local/include - TIFF_LIB = -L/usr/local/lib -ltiff - GIF_INCLUDE = -I/opt/libungif/include - GIF_LIBS = -L/opt/libungif/lib -lungif - - FREETYPE_INCLUDE = `freetype-config --cflags` - FREETYPE_LIB = `freetype-config --libs` - -endif - - -VPATH=.. - diff --git a/Make/makedirdefs b/Make/makedirdefs deleted file mode 100644 index ec43e451d..000000000 --- a/Make/makedirdefs +++ /dev/null @@ -1,283 +0,0 @@ - -################################################################ -# Directories traversed from the top level -TOP_LEVEL_DIRS = \ - src \ - applications - -ifeq ($(COMPILE_EXAMPLES),yes) -TOP_LEVEL_DIRS += examples -endif - - -################################################################ -# Directories traversed in the TOPDIR/src directory -SRC_DIRS = \ - osg \ - osgUtil \ - osgDB \ - osgGA \ - osgText \ - osgViewer \ - osgParticle \ - osgFX \ - osgShadow \ - osgSim \ - osgManipulator \ - osgTerrain \ - - -ifeq ($(COMPILE_INTROSPECTION),yes) -SRC_DIRS += \ - osgIntrospection \ - osgWrappers -endif - -SRC_DIRS += \ - osgPlugins \ - - -WRAPPER_DIRS = \ - osg \ - osgDB \ - osgFX \ - osgGA \ - osgManipulator \ - osgParticle \ - osgShadow \ - osgSim \ - osgText \ - osgUtil \ - osgTerrain \ - osgViewer \ - - - -################################################################ -# Directories traversed in the TOPDIR/src/osgPlugins directory - -PLUGIN_DIRS = \ - 3dc \ - ac \ - bmp \ - bsp \ - dds \ - x \ - dw \ - dxf \ - shp \ - hdr \ - ive \ - 3ds \ - logo \ - lwo \ - lws \ - md2 \ - net \ - normals \ - obj \ - OpenFlight \ - osg \ - osga \ - osgFX \ - osgParticle \ - osgSim \ - osgText \ - osgViewer \ - osgtgz \ - pic \ - pnm \ - rgb \ - rot \ - scale \ - stl \ - tga \ - tgz \ - trans \ - txf \ - txp \ - zip \ - - -ifeq ($(COLLADA_INSTALLED),yes) - PLUGIN_DIRS += dae -endif - -ifeq ($(XINE_INSTALLED),yes) - PLUGIN_DIRS += xine -endif - -ifeq ($(JASPER_INSTALLED),yes) - PLUGIN_DIRS += jp2 -endif - -ifeq ($(FREETYPE_INSTALLED),yes) - PLUGIN_DIRS += freetype -endif - - -ifeq ($(QUICKTIME_INSTALLED),yes) - PLUGIN_DIRS += quicktime -endif - -ifeq ($(LIBJPEG_INSTALLED),yes) - PLUGIN_DIRS += jpeg -endif - -ifeq ($(LIBUNGIF_INSTALLED),yes) - PLUGIN_DIRS += gif -endif - -ifeq ($(LIBTIFF_INSTALLED),yes) - PLUGIN_DIRS += tiff -endif - -ifeq ($(LIBPNG_INSTALLED),yes) - PLUGIN_DIRS += png -endif - -ifeq ($(COIN_INSTALLED),yes) - PLUGIN_DIRS += Inventor -else - ifeq ($(INVENTOR_INSTALLED),yes) - PLUGIN_DIRS += Inventor - endif -endif - -ifeq ($(LIBVRML_INSTALLED),yes) - PLUGIN_DIRS += vrml -endif - - -ifeq ($(PERFORMER_INSTALLED),yes) - PLUGIN_DIRS += pfb -endif - - -# Geo plugin breaks Darwin build and doens't handle BigEndian issue. -ifneq ($(OS),Darwin) -ifneq ($(OS),SunOS) -ifneq ($(OS),IRIX) - - PLUGIN_DIRS += geo - -endif -endif -endif - - -################################################################ -# Directories traversed in the TOPDIR/examples directory - -APPLICATION_DIRS = \ - osgversion - -APPLICATION_DIRS += osgarchive \ - osgconv \ - osgviewer \ - -EXAMPLE_DIRS = \ - osganimate \ - osgautotransform \ - osgbillboard \ - osgblendequation \ - osgcallback \ - osgcamera \ - osgcatch \ - osgclip \ - osgcluster \ - osgcopy \ - osgcubemap \ - osgdelaunay \ - osgdepthpartition \ - osgdepthshadow \ - osgdistortion \ - osgforest \ - osgfxbrowser \ - osggeodemo \ - osggeometry \ - osghangglide \ - osghud \ - osgimpostor \ - osgintersection \ - osgkeyboard \ - osgkeyboardmouse \ - osglauncher \ - osglight \ - osglightpoint \ - osglogicop \ - osglogo \ - osgmotionblur \ - osgmovie \ - osgmultiplecameras \ - osgmultitexture \ - osgoccluder \ - osgpagedlod \ - osgparametric \ - osgparticle \ - osgparticleeffects \ - osgpick \ - osgplanets \ - osgpoints \ - osgpointsprite \ - osgprecipitation \ - osgprerender \ - osgprerendercubemap \ - osgreflect \ - osgscalarbar \ - osgscribe \ - osgsequence \ - osgshaders \ - osgshaderterrain \ - osgshadow \ - osgshadowtexture \ - osgshape \ - osgsimple \ - osgsimplifier \ - osgslice \ - osgspacewarp \ - osgspheresegment \ - osgspotlight \ - osgstereoimage \ - osgteapot \ - osgtessellate \ - osgtext \ - osgtexture1D \ - osgtexture2D \ - osgtexture3D \ - osgtexturerectangle \ - osgunittests \ - osgvertexprogram \ - osgvolume \ - osgwindows \ - osgmanipulator \ - osgphotoalbum \ - osgsimulation \ - osgfadetext - - -ifeq ($(COMPILE_INTROSPECTION),yes) - EXAMPLE_DIRS += osgintrospection -endif - -ifeq ($(GLUT_INSTALLED),yes) - EXAMPLE_DIRS += osgGLUTsimple - EXAMPLE_DIRS += osgGLUTkeyboardmouse - EXAMPLE_DIRS += osgsimpleviewerGLUT -endif - -ifeq ($(QT3_INSTALLED),yes) - EXAMPLE_DIRS += osgsimpleviewerQT3 -endif - -ifeq ($(QT4_INSTALLED),yes) - EXAMPLE_DIRS += osgsimpleviewerQT4 -endif - -ifeq ($(SDL_INSTALLED),yes) - EXAMPLE_DIRS += osgsimpleviewerSDL -endif - -ifeq ($(FLTK_INSTALLED),yes) - EXAMPLE_DIRS += osgsimpleviewerFLTK -endif diff --git a/Make/makedirrules b/Make/makedirrules deleted file mode 100644 index 68056f5d8..000000000 --- a/Make/makedirrules +++ /dev/null @@ -1,6 +0,0 @@ - -default : $(DIRS) - @for f in $(DIRS); do echo "Entering directory $$f"; cd $$f; $(MAKE) $@ || exit 1; cd ..; done - -$(RECURSIVE_TARGETS) : $(DIRS) - @for f in $(DIRS); do echo "Entering directory $$f"; cd $$f; $(MAKE) $@ || exit 1; cd ..; done diff --git a/Make/makeinnosetup b/Make/makeinnosetup deleted file mode 100644 index 88ab15992..000000000 --- a/Make/makeinnosetup +++ /dev/null @@ -1,152 +0,0 @@ -#!/bin/sh - -VERSION=`make -s version` - -print_header() -{ - cat <<- EOF -[Setup] -AppName=Open Scene Graph -AppVerName=Open Scene Graph $VERSION -AppPublisher=OpenSceneGraph -AppPublisherURL=http://www.openscenegraph.com -AppSupportURL=http://www.openscenegraph.com -AppUpdatesURL=http://www.openscenegraph.com -DefaultDirName={pf}\OpenSceneGraph -DisableDirPage=yes -DefaultGroupName=OpenSceneGraph -DisableProgramGroupPage=yes -LicenseFile=LICENSE.txt -EOF -} - -# Usage: -# do_dir $DIR -# - -print_file_entry() -{ - DIR=$1 - FILE=$2 - printf "Source: \"%s\\\%s\"; DestDir: \"{app}\\\%s\\\"; Flags: ignoreversion\n"\ - $DIR $FILE $DIR - -} - -do_dir() -{ - DIR=$1 - shift; - - DOS_DIR=`echo $DIR | sed 's/\\//\\\/g'` - - if [ $# -gt 0 ] - then - while [ $# -gt 0 ] - do - match=$1 - shift; - for f in `find $DIR -type f | \ - grep -v CVS | \ - grep osg | - grep "$match"` - do - print_file_entry $DOS_DIR `basename $f` - done - done - else - for f in `find $DIR -type f | grep -v CVS | grep osg` - do - print_file_entry $DOS_DIR `basename $f` - done - - fi -} - -print_files() -{ - echo "[Files]" - - do_dir lib .lib - do_dir bin .exe .dll - for dir in `ls -1 include | grep osg | grep -v CVS` - do - do_dir include/"$dir" - done -} - -print_script() -{ - print_header - print_files -} - -BUILD_ISS=1 -BUILD_DISTRIBUTION=1 -CLEAN_UP=1 - -while [ $# -gt 0 ] -do - case $1 in - -c ) - BUILD_ISS=0 - BUILD_DISTRIBUTION=0 - CLEAN_UP=1 - ;; - - -d ) - BUILD_ISS=0 - BUILD_DISTRIBUTION=1 - CLEAN_UP=0 - ;; - - -n ) - CLEAN_UP=0 - ;; - - -s ) - BUILD_ISS=1 - BUILD_DISTRIBUTION=0 - CLEAN_UP=0 - ;; - esac - - shift; -done - -if [ $BUILD_ISS = 1 ] -then - echo Building Inno Setup script .... - rm -f osg.iss - - print_script | awk '{ printf "%s\r\n", $0 }' > osg.iss -fi - -if [ $BUILD_DISTRIBUTION = 1 ] -then - echo Building distribution ... - OS=`uname | cut -b1-6` - - if [ "$OS" = "CYGWIN" ] - then - C:/Program\ Files/Inno\ Setup\ 3/iscc.exe osg.iss - [ -d dist/Win32 ] || mkdir -p dist/Win32 - mv Output/setup.exe dist/Win32/OpenSceneGraph_"$VERSION"_setup.exe - rm -rf Output - else - echo " Distribution may only be built under Cygwin with Inno Setup" - fi -fi - -if [ $CLEAN_UP = 1 ] -then - echo Cleaning up... - rm -f osg.iss -fi - - - - - - - diff --git a/Make/makeirixdist b/Make/makeirixdist deleted file mode 100644 index b8c8595a4..000000000 --- a/Make/makeirixdist +++ /dev/null @@ -1,162 +0,0 @@ -#!/bin/sh - -VERSION=`gmake -s version` - -echo_idb() -{ - -## EOE - ##################################################################### - # Capture bin directory - - dd=`echo $INST_EXAMPLES | sed -e 's/\///'` - echo d 0755 root sys $dd $dd osg.eoe.sw - cd bin - for f in `find . -type l -print | grep -v CVS | sed -e 's/\.\///' | grep -v "\."` - do - ffd=`echo "$dd/$f" | sed 's/\/IRIX32//g'` - echo f 0755 root sys $ffd $ffd osg.eoe.sw - done - cd .. - - ##################################################################### - # Capture lib and lib/osgPlugins directory - - dd=`echo $INST_LIBS | sed -e 's/\///'` - echo d 0755 root sys $dd $dd osg.eoe.sw - echo d 0755 root sys $dd/osgPlugins $dd/osgPlugins osg.eoe.sw - cd lib - for f in `find . -type l -print | grep -v CVS | sed -e 's/\.\///' ` - do - ffd=`echo "$dd/$f" | sed 's/\/IRIX32//g'` - echo f 0755 root sys $ffd $ffd osg.eoe.sw - done - cd .. - -## DEV - ##################################################################### - # Capture include directories and files - dd=`echo $INST_INCLUDE | sed -e 's/\///'` - - cd include - - echo d 0755 root sys $dd $dd osg.dev.sw - for d in `find . -type d -print | grep -v CVS | sed -e 's/\.\///' | grep -v "\."` - do - echo d 0755 root sys $dd/$d $dd/$d osg.dev.sw - done - cd .. - - ##################################################################### - # Capture installed example source - - dd=`echo $INST_SRC | sed -e 's/\///'` - THISDIR=`pwd` - cd $INST_SRC - for d in `find . -type d -print | sed -e 's/\.\///' | grep -v "\." ` - do - echo d 0755 root sys $dd/$d $dd/$d osg.dev.sw - done - for f in `find . -type f -print | sed -e 's/\.\///'` - do - echo f 0755 root sys $dd/$f $dd/$f osg.dev.sw - done - cd $THISDIR -} - -make_idb() -{ - echo_idb | sort -k5 -} - -make_spec() -{ - cat <<- SPEC_EOF -product osg - id "Open Scene Graph $VERSION" - image eoe - id "Open Scene Graph $VERSION Run-Time Environment" - version $VERSION - order 9999 - subsys sw default - id "Open Scene Graph $VERSION Run-Time Environment" - replaces self - exp osg.eoe.sw - endsubsys - endimage - image dev - id "Open Scene Graph $VERSION Development Environment" - version $VERSION - order 9999 - subsys sw default - id "Open Scene Graph $VERSION Development Environment" - replaces self - exp osg.dev.sw - endsubsys - endimage -endproduct -SPEC_EOF -} - -intro() -{ - echo; echo; - echo "============ Building the $OS Distribution Package ===================" - echo "" - echo " Please note that this script requires that" - echo - echo " 'make install' " - echo - echo " be previously run. Please run " - echo - echo " 'make distribution' " - echo - echo " with the same arguments (if any) as 'make install'" - echo - repeat=1 - while [ $repeat = 1 ] - do - printf " Continue? (y/n) [y]: " - read resp - case $resp in - ""|Yes|YES|yes|Y|y) repeat=0 ;; - n|N|no|NO) return 1; repeat=0;; - *) repeat=1;; - esac - done - - return 0 -} - -OS=$1 -TOPDIR=$2 -INST_LIBS=$3 -INST_PLUGINS=$4 -INST_INCLUDE=$5 -INST_EXAMPLES=$6 -INST_SRC=$7 -INST_EXAMPLE_SRC=$8 -shift;shift; shift;shift; shift;shift; shift;shift; -INST_DOC=$1 -INST_DATA=$2 - - -intro || exit 0 - -make_spec > dist/Irix/osg.spec -make_idb > dist/Irix/osg.idb - -DIST_DIR=Distribution-$VERSION - -cd dist/Irix -rm -rf $DIST_DIR -mkdir $DIST_DIR -/usr/sbin/gendist -sbase / -idb osg.idb -spec osg.spec -dist $DIST_DIR -cd $DIST_DIR -tar cvf ../osg.tardist * -mv ../osg.tardist . -cd ../../../ - - - -exit 0 diff --git a/Make/makepkg b/Make/makepkg deleted file mode 100644 index 3f9f3ed39..000000000 --- a/Make/makepkg +++ /dev/null @@ -1,220 +0,0 @@ -#!/bin/sh - - -die() -{ - echo >& $1 - exit 1 -} - -x() -{ - echo $* - $* -} - - - -print_pkginfo() -{ - - __pstamp=`fgrep $LOGNAME /etc/passwd | cut -f5 -d":"` - cat <<- EOF -PKG="$1" -NAME="$2" -`[ "$OS" = "SunOS" ] && echo ARCH=sparc` -VERSION=`gmake -s version` -CATEGORY="application,graphics,opengl" -DESC="$3" -BASEDIR="/opt/" -VENDOR="OpenSceneGraph" -EMAIL="info@openscenegraph.org" -PSTAMP=$__pstamp -URL="http://openscenegraph.org" -MAXINST="1" -EOF - -} - -print_prototype() -{ - echo "i pkginfo" - [ -f depend ] && echo "i depend" - - for d in $* - do - d=`echo $d | sed 's/\/opt\///` - echo "d none $d ? root sys" - done - - for d in $* - do - for f in `ls -1 $d` - do - f=$d/$f - if [ -f $f ] - then - [ -x $f ] && MODE=0555 || MODE=0444 - dest=`echo $f | sed 's/\/opt\///'` - echo "f none $dest=$f $MODE root sys" - fi - done - done - -} - -make_installable() -{ - PKGNAME=$1 - PKGDIR=$PKGNAME.pkg - DISTNAME="$PKGNAME"-"`gmake -s version`"-"$OS".shar - - THISDIR=`pwd` - cd $PKGSUBDIR - - cat << INSTALL_EOF > $DISTNAME - -#!/bin/sh -cat <<- 'LEOF' | uudecode -p | gzip -d -c | tar xvf - -`tar cvf - $PKGDIR | gzip | uuencode .tmpuu` -LEOF - -/bin/sh << EOF -echo =========== INSTALLING $DISTNAME ================= -pkgadd -d $PKGNAME.pkg $PKGNAME -rm -rf $PKGDIR -EOF - - -INSTALL_EOF - - chmod +x $DISTNAME - cd $THISDIR -} - - -make_package() -{ - PKGNAME=$1 - PKGDIR=$PKGSUBDIR/$PKGNAME.pkg - x rm -rf $PKGDIR - x mkdir $PKGDIR - - echo Making pkginfo ... - print_pkginfo "$1" "$2" "$3" > $PKGDIR/pkginfo - - shift; shift; shift - - echo Making prototype ... - - print_prototype $* > $PKGDIR/prototype - -# DISTNAME="$PKGNAME"-"`$TOPDIR/bin/osgversion`"-"$OS"-"local" - - THISDIR=`pwd` - x cd $PKGDIR - x pkgmk -d . - x cd $THISDIR -# make_installable $PKGNAME $PKGDIR $DISTNAME -# x pkgtrans -s $PKGDIR $DISTNAME $PKGNAME -# x mv "$PKGDIR"/"$DISTNAME" "$PKGDIR"/.. -} - - -intro() -{ - echo; echo; - echo "============ Building the $OS Distribution Package ===================" - echo "" - echo " Please note that this script requires that" - echo - echo " 'make install' " - echo - echo " be previously run. Please run " - echo - echo " 'make distribution' " - echo - echo " with the same arguments (if any) as 'make install'" - echo - repeat=1 - while [ $repeat = 1 ] - do - printf " Continue? (y/n) [y]: " - read resp - case $resp in - ""|Yes|YES|yes|Y|y) repeat=0 ;; - n|N|no|NO) return 1; repeat=0;; - *) repeat=1;; - esac - done - - return 0 -} - -intro || exit 0 - -OS=$1 -TOPDIR=$2 -INST_LIBS=$3 -INST_PLUGINS=$4 -INST_INCLUDE=$5 -INST_EXAMPLES=$6 -INST_SRC=$7 -INST_EXAMPLE_SRC=$8 -shift;shift; shift;shift; shift;shift; shift;shift; -INST_DOC=$1 -INST_DATA=$2 - - -PKGSUBDIR=dist/PKG - -make_package\ - "OpenSceneGraph" \ - "Open Scene Graph - Run-time environment"\ - "An OpenGL based scene graph. This installation includes a set of run-time libraries, and example programs"\ - $INST_LIBS $INST_PLUGINS $INST_EXAMPLES\ - -make_installable "OpenSceneGraph" - -# -# Capture include directories -# -SUBDIRS=`ls $TOPDIR/include | grep -v CVS` -INSTARG="" -for d in $SUBDIRS -do - dd="$INST_INCLUDE"/"$d" - [ -d $dd ] && INSTARG="$INSTARG $dd" -done - -# -# Capthre examples subdirectories -# -SUBDIRS=`ls $TOPDIR/src/examples | grep -v CVS` -for d in $SUBDIRS -do - dd="$INST_EXAMPLE_SRC"/"$d" - [ -d $dd ] && INSTARG="$INSTARG $dd" -done - -# -# Capture Make subdirectory -# -dd="$INST_SRC"/"Make" - -echo dd is $dd -ls $dd - -[ -d $dd ] && INSTARG="$INSTARG $dd" - - -make_package\ - "OpenSceneGraph-dev"\ - "Open Scene Graph - Development environment"\ - "An OpenGL based scene graph. This installation includes header files and example program source files"\ - $INSTARG - -make_installable "OpenSceneGraph-dev" - - -exit 0 diff --git a/Make/makerpms b/Make/makerpms deleted file mode 100644 index 2d791db25..000000000 --- a/Make/makerpms +++ /dev/null @@ -1,215 +0,0 @@ -#!/bin/sh - -die() -{ - echo $1 - exit 1 -} - - -s_install() -{ - src_DIR=$1 - mode=$2 - dst_DIR=$RPM_BUILD_DIR/`echo $3 | sed 's/\///'` - - [ -d $dst_DIR ] || mkdir -p $dst_DIR - - THISDIR=`pwd` - cd $src_DIR - for f in `ls -1` - do - if [ -f $f ] - then - install -m $mode $f $dst_DIR/$f - fi - done - cd $THISDIR -} - - -print_attr() -{ - dst_DIR=$1 - mode=$2 - t_dir=$RPM_BUILD_DIR/$dst_DIR - - THISDIR=`pwd` - cd $t_dir - for f in `ls -1` - do - [ -f $f ] && echo "%attr($mode, root, root) $dst_DIR/$f" - done - cd $THISDIR -} - -make_targz() -{ - THISDIR=`pwd` - src_dir=$1 - cd $RPM_BUILD_DIR/.. - tar cvf - $src_dir |\ - gzip > /usr/src/redhat/SOURCES/$src_dir.tar.gz - cd $THISDIR -} - -make_spec() -{ - name=$1 - cat <<-LEOF > $TOPDIR/dist/RPM/$name.spec - -Summary: A C++ scene graph API on OpenGL for real time graphics -Name: $name -Version: $REV -Release: $REL -Copyright: LGPL -Group: Graphics -Source: $name-$REV.tar.gz -URL: http://www.openscenegraph.org -Packager: `awk -f - /etc/passwd <<-EOF -BEGIN { FS=":"} -{ - if( \\$1 == "$LOGNAME" ) - print \\$5 -} -EOF` - -%description - -The Open Scene Graph is a cross-platform C++/OpenGL library for the real-time -visualization. Uses range from visual simulation, scientific modeling, virtual -reality through to games. Open Scene Graph employs good practices in software -engineering through the use of standard C++, STL and generic programming, and -design patterns. Open Scene Graph strives for high performance and quality in -graphics rendering, protability, and extensibility - -%prep - -%setup - -%build - -%install - -cd $RPM_BUILD_DIR -tar cvf - . | tar xvfC - / - -# --------------------- -# FILES Sections -%files - -LEOF -} - - -make_osg() -{ - RPM_BUILD_DIR=/usr/src/redhat/BUILD/OpenSceneGraph-$REV - rm -rf $RPM_BUILD_DIR - mkdir $RPM_BUILD_DIR - - s_install $TOPDIR/lib 755 $INST_LIBS - s_install $TOPDIR/lib/osgPlugins 755 $INST_PLUGINS - s_install $TOPDIR/bin 755 $INST_EXAMPLES - - make_targz OpenSceneGraph-$REV - make_spec OpenSceneGraph - - print_attr $INST_LIBS 755 >> $TOPDIR/dist/RPM/OpenSceneGraph.spec - print_attr $INST_PLUGINS 755 >> $TOPDIR/dist/RPM/OpenSceneGraph.spec - print_attr $INST_EXAMPLES 755 >> $TOPDIR/dist/RPM/OpenSceneGraph.spec - - rpmbuild -bb --clean $TOPDIR/dist/RPM/OpenSceneGraph.spec - - mv /usr/src/redhat/RPMS/i386/OpenSceneGraph-$REV-$REL.i386.rpm dist/RPM -} - -make_osg_dev() -{ - RPM_BUILD_DIR=/usr/src/redhat/BUILD/OpenSceneGraph_dev-$REV - rm -rf $RPM_BUILD_DIR - mkdir $RPM_BUILD_DIR - - for d in `ls $TOPDIR/include | grep -v CVS` - do - [ -d $TOPDIR/include/$d ] && \ - s_install $TOPDIR/include/$d 644 $INST_INCLUDE/$d - done - - - for d in `ls -1 $INST_EXAMPLE_SRC` - do - if [ -d $INST_EXAMPLE_SRC/$d ] - then - s_install $INST_EXAMPLE_SRC/$d 644 $INST_EXAMPLE_SRC/$d - fi - cd $THISDIR - done - - s_install $INST_SRC/Make 644 $INST_SRC/Make - - - make_targz OpenSceneGraph_dev-$REV - make_spec OpenSceneGraph_dev - - for d in `ls -1 $RPM_BUILD_DIR/$INST_INCLUDE` - do - print_attr $INST_INCLUDE/$d 755 >> $TOPDIR/dist/RPM/OpenSceneGraph_dev.spec - done - - for d in `ls -1 $RPM_BUILD_DIR/$INST_EXAMPLE_SRC` - do - print_attr $INST_EXAMPLE_SRC/$d 755 >> $TOPDIR/dist/RPM/OpenSceneGraph_dev.spec - done - - print_attr $INST_SRC/Make 755 >> $TOPDIR/dist/RPM/OpenSceneGraph_dev.spec - - rpm -bb --clean $TOPDIR/dist/RPM/OpenSceneGraph_dev.spec - - mv /usr/src/redhat/RPMS/i386/OpenSceneGraph_dev-$REV-$REL.i386.rpm dist/RPM -} - -echo "The current $0 script is broken and needs to be updated." -exit 1 - -if [ "`whoami`" != "root" ] -then - echo - echo " === makerpm : You must be root do make the RPM distribution." - echo - exit 1 -fi - -if [ $# -ne 10 ] -then - echo - echo makerpm : Internal Error - Bad Usage - echo - exit 1 -fi - -OS=$1 -TOPDIR=$2 -INST_LIBS=$3 -INST_PLUGINS=$4 -INST_INCLUDE=$5 -INST_EXAMPLES=$6 -INST_SRC=$7 -INST_EXAMPLE_SRC=$8 -shift;shift; shift;shift; shift;shift; shift;shift; -INST_DOC=$1 -INST_DATA=$2 - -REV="`make -s version`" -[ -z "$REV" ] && die "makerpm: requires a functional $TOPDIR/bin/osgversion" - -REL=1 - - -make_osg - -make_osg_dev - - - -exit 0 diff --git a/Make/makerules b/Make/makerules deleted file mode 100644 index 6ccac40e1..000000000 --- a/Make/makerules +++ /dev/null @@ -1,259 +0,0 @@ - -default: opt - -opt: \ - $(EXEC:=.opt) \ - $(LIB:=.opt) \ - $(WRAPPER:=.opt) \ - $(PLUGIN:=.opt) \ - -debug: \ - $(EXEC:=.dbg) \ - $(LIB:=.dbg) \ - $(WRAPPER:=.dbg) \ - $(PLUGIN:=.dbg) \ - -static: \ - $(LIB:.$(LIB_EXT)=.static) \ - $(PLUGIN:.$(PLUGIN_EXT)=.static) \ - -staticdebug: \ - $(LIB:.$(LIB_EXT)=.staticdbg) \ - $(PLUGIN:.$(LIB_EXT)=.staticdbg) \ - -cleandepend: cleandependopt cleandependdbg - -cleandependopt: - @[ -d $(OPTDIR) ] && cd $(OPTDIR); rm -f Makedepend; rm -rf .depend - -cleandependdbg: - @[ -d $(DEBUGDIR) ] && cd $(DEBUGDIR); rm -f Makedepend; rm -rf .depend - -cleantarget: cleantargetopt cleantargetdbg - -cleantargetopt: - @[ -d $(OPTDIR) ] && cd $(OPTDIR); rm -f $(EXEC)$(EXE_EXT) $(LIB) ${WRAPPER} $(PLUGIN) - -cleantargetdbg: - @[ -d $(DEBUGDIR) ] && cd $(DEBUGDIR); rm -f $(EXEC)$(EXE_EXT) $(LIB) ${WRAPPER} $(PLUGIN) - -clean: cleanopt cleandbg - -cleanopt: - @[ -d $(OPTDIR) ] && cd $(OPTDIR); rm -f $(OBJS) Makedepend; rm -rf .depend - -cleandbg: - @[ -d $(DEBUGDIR) ] && cd $(DEBUGDIR); rm -f $(OBJS) Makedepend; rm -rf .depend - -clobber: clobberdbg clobberopt - -clobberopt: - rm -rf $(OPTDIR) - -clobberdbg: - rm -rf $(DEBUGDIR) - - -beautify: - for f in *.cpp ; do mv $$f $$f.bak; bcpp $$f.bak $$f; rm $$f.bak; done - for f in *.h ; do mv $$f $$f.bak; bcpp $$f.bak $$f; rm $$f.bak; done - -docs: - [ "$(TARGET_BASENAME)" != "" ] && \ - mkdir -p $(TOPDIR)/doc/doc++/$(TARGET_BASENAME) && \ - doc++ -d $(TOPDIR)/doc/doc++/$(TARGET_BASENAME) -H -A \ - $(TOPDIR)/include/$(TARGET_BASENAME)/* && \ - echo "$(TARGET_BASENAME) HTML documentation created in " \ - "$(TOPDIR)/doc/doc++/$(TARGET_BASENAME)" - - -$(EXEC): $(OBJS) - $(C++) $(LDFLAGS) $(OBJS) $(LIBS) -o $@ - - -## Mac OSX makes the distinction between -dynamiclib and -bundle -## causing us to have to make a special case here, rather than -## just redefining the SHARED argument. - -ifeq ($(OS),Darwin) - -$(LIB): $(OBJS) - $(C++) $(LDFLAGS) $(LIBVERSION) -dynamiclib $(OBJS) $(LIBS) -o $@ - -$(WRAPPER) $(PLUGIN): $(OBJS) - $(C++) $(LDFLAGS) -bundle $(OBJS) $(LIBS) -o $@ - -$(PLUGIN): $(OBJS) - $(C++) $(LDFLAGS) -bundle $(OBJS) $(LIBS) -o $@ - -else - ifeq ($(OS),HP-UX) - -# we need to explicitly tell the linker the library name - else it will -# include paths like ../../../libosg.sl into executables -$(LIB) $(PLUGIN) ${WRAPPER} : $(OBJS) - $(C++) $(LDFLAGS) $(SHARED) $(OBJS) $(LIBS) -Wl,+h -Wl,$@ -o $@ - - else - -$(LIB) $(PLUGIN) ${WRAPPER} : $(OBJS) - $(C++) $(LDFLAGS) $(SHARED) $(OBJS) $(LIBS) -o $@ - -$(STATICLIB) $(STATICPLUGIN): $(OBJS) - ar rv $@ $? - - endif # not HP-UX -endif # not Darwin - -$(EXEC:=.dbg) : - @[ -d $(DEBUGDIR) ] || mkdir $(DEBUGDIR) - @cd $(DEBUGDIR); \ - $(MAKE) -f ../GNUmakefile "DOF=$(DBGF)" TOPDIR=../${TOPDIR} \ - THISDIR=../$(THISDIR) \ - MAKEDEPEND=Makedepend $(EXEC) - @$(MAKE) LNSRC=$(DEBUGDIR)/$(EXEC)$(EXE_EXT) LNDEST=$(BININST)/$(EXEC)$(EXE_EXT) __link - -$(LIB:=.dbg) : - @[ -d $(DEBUGDIR) ] || mkdir $(DEBUGDIR) - @cd $(DEBUGDIR); \ - $(MAKE) -f ../GNUmakefile "DOF=$(DBGF)" TOPDIR=../${TOPDIR} \ - THISDIR=../$(THISDIR) \ - MAKEDEPEND=Makedepend $(LIB) - @$(MAKE) LNSRC=$(DEBUGDIR)/$(LIB) LNDEST=$(LIBINST)/$(LIB) __link -ifdef IMP_LIB_EXT - @$(MAKE) LNSRC=$(DEBUGDIR)/lib$(TARGET_BASENAME).$(IMP_LIB_EXT) LNDEST=$(IMP_LIBINST)/lib$(TARGET_BASENAME).$(IMP_LIB_EXT) __link -endif - -$(LIB:.$(LIB_EXT)=.staticdbg) : - @[ -d $(DEBUGDIR) ] || mkdir $(DEBUGDIR) - @cd $(DEBUGDIR); \ - $(MAKE) -f ../GNUmakefile "DOF=$(DBGF)" TOPDIR=../${TOPDIR} \ - THISDIR=../$(THISDIR) \ - MAKEDEPEND=Makedepend $(STATICLIB) - @$(MAKE) LNSRC=$(DEBUGDIR)/$(STATICLIB) LNDEST=$(LIBINST)/$(OS)$(ARCH)/$(STATICLIB) __link - -$(WRAPPER:=.dbg) : - @[ -d $(DEBUGDIR) ] || mkdir $(DEBUGDIR) - @cd $(DEBUGDIR); \ - $(MAKE) -f ../GNUmakefile "DOF=$(DBGF)" TOPDIR=../${TOPDIR} \ - THISDIR=../$(THISDIR) \ - MAKEDEPEND=Makedepend $(WRAPPER) - @$(MAKE) LNSRC=$(DEBUGDIR)/$(WRAPPER) LNDEST=$(PLUGININST)/$(WRAPPER) __link - -$(PLUGIN:=.dbg) : - @[ -d $(DEBUGDIR) ] || mkdir $(DEBUGDIR) - @cd $(DEBUGDIR); \ - $(MAKE) -f ../GNUmakefile "DOF=$(DBGF)" TOPDIR=../${TOPDIR} \ - THISDIR=../$(THISDIR) \ - MAKEDEPEND=Makedepend $(PLUGIN) - @$(MAKE) LNSRC=$(DEBUGDIR)/$(PLUGIN) LNDEST=$(PLUGININST)/$(PLUGIN) __link -ifdef IMP_LIB_EXT - @$(MAKE) LNSRC=$(DEBUGDIR)/lib$(TARGET_BASENAME)$(IMP_LIB_EXT) LNDEST=$(IMP_PLUGININST)/lib$(TARGET_BASENAME).$(IMP_LIB_EXT) __link -endif - -$(PLUGIN:.$(PLUGIN_EXT)=.staticdbg) : - @[ -d $(DEBUGDIR) ] || mkdir -p $(DEBUGDIR) - @cd $(DEBUGDIR); \ - $(MAKE) -f ../GNUmakefile "DOF=$(DBGF)" TOPDIR=../${TOPDIR} \ - THISDIR=../$(THISDIR) \ - MAKEDEPEND=Makedepend STATICPLUGIN=$(PLUGIN:.$(PLUGIN_EXT)=.a) $(STATICPLUGIN) - @$(MAKE) LNSRC=$(DEBUGDIR)/$(STATICPLUGIN) LNDEST=$(PLUGININST)/$(STATICPLUGIN) __link - -$(EXEC:=.opt) : - @[ -d $(OPTDIR) ] || mkdir $(OPTDIR) - @cd $(OPTDIR); \ - $(MAKE) -f ../GNUmakefile DOF=$(OPTF) TOPDIR=../${TOPDIR} \ - THISDIR=../$(THISDIR) \ - MAKEDEPEND=Makedepend $(EXEC) - @$(MAKE) LNSRC=$(OPTDIR)/$(EXEC)$(EXE_EXT) LNDEST=$(BININST)/$(EXEC)$(EXE_EXT) __link - - -$(LIB:=.opt) : - @[ -d $(OPTDIR) ] || mkdir -p $(OPTDIR) - @cd $(OPTDIR); \ - $(MAKE) -f ../GNUmakefile DOF=$(OPTF) TOPDIR=../${TOPDIR} \ - THISDIR=../$(THISDIR) \ - MAKEDEPEND=Makedepend $(LIB) - @$(MAKE) LNSRC=$(OPTDIR)/$(LIB) LNDEST=$(LIBINST)/$(LIB) __link -ifdef IMP_LIB_EXT - @$(MAKE) LNSRC=$(OPTDIR)/lib$(TARGET_BASENAME).$(IMP_LIB_EXT) LNDEST=$(IMP_LIBINST)/lib$(TARGET_BASENAME).$(IMP_LIB_EXT) __link -endif - -$(LIB:.$(LIB_EXT)=.static) : - [ -d $(OPTDIR) ] || mkdir $(OPTDIR) - cd $(OPTDIR); \ - $(MAKE) -f ../GNUmakefile DOF=$(OPTF) TOPDIR=../${TOPDIR} \ - THISDIR=../$(THISDIR) \ - MAKEDEPEND=Makedepend $(STATICLIB) - @$(MAKE) LNSRC=$(OPTDIR)/$(STATICLIB) LNDEST=$(LIBINST)/$(OS)$(ARCH)/$(STATICLIB) __link - -$(WRAPPER:=.opt) : - @[ -d $(OPTDIR) ] || mkdir -p $(OPTDIR) - @cd $(OPTDIR); \ - $(MAKE) -f ../GNUmakefile DOF=$(OPTF) TOPDIR=../${TOPDIR} \ - THISDIR=../$(THISDIR) \ - MAKEDEPEND=Makedepend $(WRAPPER) - @$(MAKE) LNSRC=$(OPTDIR)/$(WRAPPER) LNDEST=$(PLUGININST)/$(WRAPPER) __link - -$(PLUGIN:=.opt) : - @[ -d $(OPTDIR) ] || mkdir -p $(OPTDIR) - @cd $(OPTDIR); \ - $(MAKE) -f ../GNUmakefile DOF=$(OPTF) TOPDIR=../${TOPDIR} \ - THISDIR=../$(THISDIR) \ - MAKEDEPEND=Makedepend $(PLUGIN) - @$(MAKE) LNSRC=$(OPTDIR)/$(PLUGIN) LNDEST=$(PLUGININST)/$(PLUGIN) __link -ifdef IMP_LIB_EXT - @$(MAKE) LNSRC=$(OPTDIR)/lib$(TARGET_BASENAME).$(IMP_LIB_EXT) LNDEST=$(IMP_PLUGININST)/lib$(TARGET_BASENAME).$(IMP_LIB_EXT) __link -endif - -$(PLUGIN:.$(PLUGIN_EXT)=.static) : - @[ -d $(OPTDIR) ] || mkdir -p $(OPTDIR) - @cd $(OPTDIR); \ - $(MAKE) -f ../GNUmakefile DOF=$(OPTF) TOPDIR=../${TOPDIR} \ - THISDIR=../$(THISDIR) \ - MAKEDEPEND=Makedepend STATICPLUGIN=$(PLUGIN:.$(PLUGIN_EXT)=.a) $(STATICPLUGIN) - @$(MAKE) LNSRC=$(OPTDIR)/$(STATICPLUGIN) LNDEST=$(PLUGININST)/$(STATICPLUGIN) __link - - - -## Revamped method for making Makedepend files -## Under this method, Makedepend simply includes -## all dependency files which are built for each -## individual source file. At update, only the individual -## dependency file is updated rather than the whole of Makedepend - -Makedepend : $(CXXFILES) $(CFILES) -ifeq ($(OS),IRIX) - touch $@ -else - @ touch $@ - @if [ ! -d .depend ] ; then \ - mkdir .depend; \ - depfiles="$+"; \ - else \ - depfiles="$?"; \ - fi; \ - if [ ! -z "$$depfiles" ]; then \ - for f in $$depfiles; do \ - echo "$(C++) $(DEPARG) $(INC) $$f pipeto .depend/`basename $$f`"; \ - $(C++) $(DEPARG) $(INC) $$f > .depend/`basename $$f`; \ - grep $$f $@ || echo include .depend/`basename $$f` >> Makedepend ; \ - done; \ - fi -endif - - -.SUFFIXES: .cpp .o -.cpp.o: - $(C++) $(CXXFLAGS) -c $< - -depend : $(MAKEDEPEND) - -__link : - @sh $(TOPDIR)/Make/dolink.sh $(TOPDIR) $(LNSRC) $(LNDEST) "$(LINK)" - -__instfiles : - @echo $(INSTFILES) - -sinclude $(MAKEDEPEND) - diff --git a/Make/openscenegraph.pc b/Make/openscenegraph.pc deleted file mode 100644 index 48bceb47b..000000000 --- a/Make/openscenegraph.pc +++ /dev/null @@ -1,14 +0,0 @@ -# pkg-config source file - -prefix=/usr -exec_prefix=${prefix} -libdir=${exec_prefix}/lib -includedir=${prefix}/include - -Name: openscenegraph -Description: 3D scenegraph -Version: 1.2,0 -Requires: openthreads -Conflicts: -Libs: -L${libdir} -losg -losgDB -losgFX -losgGA -losgParticle -losgViewer -losgSim -losgText -losgUtil -Cflags: -I${includedir} diff --git a/Make/tagrules b/Make/tagrules deleted file mode 100644 index 251e8dd36..000000000 --- a/Make/tagrules +++ /dev/null @@ -1,2 +0,0 @@ -tag: - cvs tag OpenSceneGraph_$(VERSION_MAJOR)_$(VERSION_MINOR)_$(VERSION_RELEASE)_release_revision_$(VERSION_REVISION) diff --git a/Make/versionrules b/Make/versionrules deleted file mode 100644 index 4e945ef75..000000000 --- a/Make/versionrules +++ /dev/null @@ -1,21 +0,0 @@ -####################################################################### -## -## VERSIONING SEMANTICS -## -## Version consistes of . . - -## Where: -## major : Production (0 = pre-production) -## minor : 0-7 = Production minor, 8 = Alpha, 9 = Beta -## release : Release tag -## revision: Release revision - 0 = development (cutting edge). -## -## -## 'make version' will print the version with a -####################################################################### -version : - @if [ "$(VERSION_REVISION)" = "0" ]; then \ - release=`date +%Y%m%d%H%M`; \ - else \ - release=$(VERSION_REVISION); \ - fi; \ - echo $(VERSION)-$$release; diff --git a/VisualStudio/applications/osgarchive/osgarchive.dsp b/VisualStudio/applications/osgarchive/osgarchive.dsp deleted file mode 100644 index 750ca82a8..000000000 --- a/VisualStudio/applications/osgarchive/osgarchive.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Application osgarchive" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Application osgarchive - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgarchive.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgarchive.mak" CFG="Application osgarchive - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Application osgarchive - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Application osgarchive - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Application osgarchive - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgarchive.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Application osgarchive - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgarchived.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Application osgarchive - Win32 Release" -# Name "Application osgarchive - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\applications\osgarchive\osgarchive.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/applications/osgconv/osgconv.dsp b/VisualStudio/applications/osgconv/osgconv.dsp deleted file mode 100755 index 207b4f744..000000000 --- a/VisualStudio/applications/osgconv/osgconv.dsp +++ /dev/null @@ -1,105 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Application osgconv" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Application osgconv - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgconv.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgconv.mak" CFG="Application osgconv - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Application osgconv - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Application osgconv - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Application osgconv - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgconv.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Application osgconv - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgconvd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Application osgconv - Win32 Release" -# Name "Application osgconv - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\applications\osgconv\OrientationConverter.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\applications\osgconv\osgconv.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/applications/osgdem/osgdem.dsp b/VisualStudio/applications/osgdem/osgdem.dsp deleted file mode 100644 index a33c4461a..000000000 --- a/VisualStudio/applications/osgdem/osgdem.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Application osgdem" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Application osgdem - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgdem.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgdem.mak" CFG="Application osgdem - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Application osgdem - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Application osgdem - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Application osgdem - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib gdal_i.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgdem.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Application osgdem - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib gdal_iD.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgdemd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Application osgdem - Win32 Release" -# Name "Application osgdem - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\applications\osgdem\osgdem.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/applications/osgversion/osgversion.dsp b/VisualStudio/applications/osgversion/osgversion.dsp deleted file mode 100755 index 61da11caf..000000000 --- a/VisualStudio/applications/osgversion/osgversion.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Application osgversion" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Application osgversion - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgversion.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgversion.mak" CFG="Application osgversion - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Application osgversion - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Application osgversion - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Application osgversion - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgversion.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Application osgversion - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgversiond.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Application osgversion - Win32 Release" -# Name "Application osgversion - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\applications\osgversion\osgversion.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/applications/osgviewer/osgviewerapplication.dsp b/VisualStudio/applications/osgviewer/osgviewerapplication.dsp deleted file mode 100644 index eb16e1555..000000000 --- a/VisualStudio/applications/osgviewer/osgviewerapplication.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Application osgviewer" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Application osgviewer - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgviewer.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgviewer.mak" CFG="Application osgviewer - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Application osgviewer - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Application osgviewer - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Application osgviewer - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgviewer.exe" /libpath:"../../../lib/$(PlatformName)" - -!ELSEIF "$(CFG)" == "Application osgviewer - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib /nologo /subsystem:console /pdb:"../../../bin/$(PlatformName)/osgviewerapplicationd.pdb" /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgviewerd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Application osgviewer - Win32 Release" -# Name "Application osgviewer - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\applications\osgviewer\osgviewer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgGLUTkeyboardmouse/osgGLUTkeyboardmouse.dsp b/VisualStudio/examples/osgGLUTkeyboardmouse/osgGLUTkeyboardmouse.dsp deleted file mode 100644 index c800dcd6b..000000000 --- a/VisualStudio/examples/osgGLUTkeyboardmouse/osgGLUTkeyboardmouse.dsp +++ /dev/null @@ -1,99 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgGLUTkeyboardmouse" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgGLUTkeyboardmouse - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgGLUTkeyboardmouse.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgGLUTkeyboardmouse.mak" CFG="Example osgGLUTkeyboardmouse - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgGLUTkeyboardmouse - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgGLUTkeyboardmouse - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgGLUTkeyboardmouse - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 glut32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgGLUTkeyboardmouse.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgGLUTkeyboardmouse - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 glut32D.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /out:"$(OutDir)/osgGLUTkeyboardmoused.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgGLUTkeyboardmouse - Win32 Release" -# Name "Example osgGLUTkeyboardmouse - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgGLUTkeyboardmouse\osgGLUTkeyboardmouse.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgGLUTsimple/osgGLUTsimple.dsp b/VisualStudio/examples/osgGLUTsimple/osgGLUTsimple.dsp deleted file mode 100644 index b2c223953..000000000 --- a/VisualStudio/examples/osgGLUTsimple/osgGLUTsimple.dsp +++ /dev/null @@ -1,99 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgGLUTsimple" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgGLUTsimple - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgGLUTsimple.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgGLUTsimple.mak" CFG="Example osgGLUTsimple - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgGLUTsimple - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgGLUTsimple - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgGLUTsimple - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 glut32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgGLUTsimple.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgGLUTsimple - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 glut32D.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /out:"$(OutDir)/osgGLUTsimpled.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgGLUTsimple - Win32 Release" -# Name "Example osgGLUTsimple - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgGLUTsimple\osgGLUTsimple.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osganimate/osganimate.dsp b/VisualStudio/examples/osganimate/osganimate.dsp deleted file mode 100755 index 795e22cc0..000000000 --- a/VisualStudio/examples/osganimate/osganimate.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osganimate" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osganimate - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osganimate.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osganimate.mak" CFG="Example osganimate - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osganimate - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osganimate - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osganimate - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osganimate.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osganimate - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osganimated.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osganimate - Win32 Release" -# Name "Example osganimate - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osganimate\osganimate.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgautotransform/osgautotransform.dsp b/VisualStudio/examples/osgautotransform/osgautotransform.dsp deleted file mode 100644 index 8b2c4f104..000000000 --- a/VisualStudio/examples/osgautotransform/osgautotransform.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgautotransform" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgautotransform - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgautotransform.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgautotransform.mak" CFG="Example osgautotransform - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgautotransform - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgautotransform - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgautotransform - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgautotransform.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgautotransform - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgautotransformd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgautotransform - Win32 Release" -# Name "Example osgautotransform - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgautotransform\osgautotransform.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgbillboard/osgbillboard.dsp b/VisualStudio/examples/osgbillboard/osgbillboard.dsp deleted file mode 100755 index 58edfc638..000000000 --- a/VisualStudio/examples/osgbillboard/osgbillboard.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgbillboard" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgbillboard - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgbillboard.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgbillboard.mak" CFG="Example osgbillboard - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgbillboard - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgbillboard - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgbillboard - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgbillboard.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgbillboard - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgbillboardd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgbillboard - Win32 Release" -# Name "Example osgbillboard - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgbillboard\osgbillboard.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgblendequation/osgblendequation.dsp b/VisualStudio/examples/osgblendequation/osgblendequation.dsp deleted file mode 100644 index cf3003a59..000000000 --- a/VisualStudio/examples/osgblendequation/osgblendequation.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgblendequation" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgblendequation - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgblendequation.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgblendequation.mak" CFG="Example osgblendequation - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgblendequation - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgblendequation - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgblendequation - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgblendequation.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgblendequation - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgblendequationd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgblendequation - Win32 Release" -# Name "Example osgblendequation - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgblendequation\osgblendequation.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgcallback/osgcallback.dsp b/VisualStudio/examples/osgcallback/osgcallback.dsp deleted file mode 100755 index 7b70440cd..000000000 --- a/VisualStudio/examples/osgcallback/osgcallback.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgcallback" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgcallback - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgcallback.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgcallback.mak" CFG="Example osgcallback - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgcallback - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgcallback - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgcallback - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgcallback.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgcallback - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgcallbackd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgcallback - Win32 Release" -# Name "Example osgcallback - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgcallback\osgcallback.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgcamera/osgcamera.dsp b/VisualStudio/examples/osgcamera/osgcamera.dsp deleted file mode 100644 index dae296e7f..000000000 --- a/VisualStudio/examples/osgcamera/osgcamera.dsp +++ /dev/null @@ -1,102 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgcamera" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgcamera - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgcamera.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgcamera.mak" CFG="Example osgcamera - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgcamera - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgcamera - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgcamera - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgcamera.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgcamera - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgcamerad.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgcamera - Win32 Release" -# Name "Example osgcamera - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgcamera\osgcamera.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project - diff --git a/VisualStudio/examples/osgcatch/osgcatch.dsp b/VisualStudio/examples/osgcatch/osgcatch.dsp deleted file mode 100644 index be3f81138..000000000 --- a/VisualStudio/examples/osgcatch/osgcatch.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgcatch" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgcatch - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgcatch.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgcatch.mak" CFG="Example osgcatch - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgcatch - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgcatch - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgcatch - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgcatch.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgcatch - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgcatchd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgcatch - Win32 Release" -# Name "Example osgcatch - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgcatch\osgcatch.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgclip/osgclip.dsp b/VisualStudio/examples/osgclip/osgclip.dsp deleted file mode 100755 index 89c5f16dc..000000000 --- a/VisualStudio/examples/osgclip/osgclip.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgclip" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgclip - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgclip.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgclip.mak" CFG="Example osgclip - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgclip - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgclip - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgclip - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgclip.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgclip - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgclipd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgclip - Win32 Release" -# Name "Example osgclip - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgclip\osgclip.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgcluster/osgcluster.dsp b/VisualStudio/examples/osgcluster/osgcluster.dsp deleted file mode 100644 index c63a945b3..000000000 --- a/VisualStudio/examples/osgcluster/osgcluster.dsp +++ /dev/null @@ -1,126 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgcluster" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgcluster - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgcluster.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgcluster.mak" CFG="Example osgcluster - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgcluster - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgcluster - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgcluster - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib wsock32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgcluster.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgcluster - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# SUBTRACT CPP /Fr -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib wsock32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgclusterd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgcluster - Win32 Release" -# Name "Example osgcluster - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\examples\osgcluster\broadcaster.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgcluster\osgcluster.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgcluster\receiver.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter ";h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\examples\osgcluster\broadcaster.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgcluster\receiver.h -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "" -# End Group -# End Target -# End Project diff --git a/VisualStudio/examples/osgcopy/osgcopy.dsp b/VisualStudio/examples/osgcopy/osgcopy.dsp deleted file mode 100755 index bd528719f..000000000 --- a/VisualStudio/examples/osgcopy/osgcopy.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgcopy" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgcopy - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgcopy.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgcopy.mak" CFG="Example osgcopy - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgcopy - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgcopy - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgcopy - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgcopy.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgcopy - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgcopyd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgcopy - Win32 Release" -# Name "Example osgcopy - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgcopy\osgcopy.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgcubemap/osgcubemap.dsp b/VisualStudio/examples/osgcubemap/osgcubemap.dsp deleted file mode 100755 index c3b0ac8f0..000000000 --- a/VisualStudio/examples/osgcubemap/osgcubemap.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgcubemap" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgcubemap - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgcubemap.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgcubemap.mak" CFG="Example osgcubemap - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgcubemap - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgcubemap - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgcubemap - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgcubemap.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgcubemap - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgcubemapd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgcubemap - Win32 Release" -# Name "Example osgcubemap - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgcubemap\osgcubemap.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgdelaunay/osgdelaunay.dsp b/VisualStudio/examples/osgdelaunay/osgdelaunay.dsp deleted file mode 100644 index 0d040aa9a..000000000 --- a/VisualStudio/examples/osgdelaunay/osgdelaunay.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgdelaunay" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgdelaunay - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgdelaunay.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgdelaunay.mak" CFG="Example osgdelaunay - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgdelaunay - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgdelaunay - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgdelaunay - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgdelaunay.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgdelaunay - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgdelaunayd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgdelaunay - Win32 Release" -# Name "Example osgdelaunay - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgdelaunay\osgdelaunay.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgdepthpartition/osgdepthpartition.dsp b/VisualStudio/examples/osgdepthpartition/osgdepthpartition.dsp deleted file mode 100644 index ef8dde8dc..000000000 --- a/VisualStudio/examples/osgdepthpartition/osgdepthpartition.dsp +++ /dev/null @@ -1,125 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgdepthpartition" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgdepthpartition - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgdepthpartition.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgdepthpartition.mak" CFG="Example osgdepthpartition - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgdepthpartition - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgdepthpartition - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgdepthpartition - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgdepthpartition.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgdepthpartition - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgdepthpartitiond.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgdepthpartition - Win32 Release" -# Name "Example osgdepthpartition - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\examples\osgdepthpartition\DepthPartitionNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgdepthpartition\DistanceAccumulator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgdepthpartition\osgdepthpartition.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter ";h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\examples\osgdepthpartition\DepthPartitionNode.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgdepthpartition\DistanceAccumulator.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Group -# End Target -# End Project diff --git a/VisualStudio/examples/osgdepthshadow/osgdepthshadow.dsp b/VisualStudio/examples/osgdepthshadow/osgdepthshadow.dsp deleted file mode 100644 index 88e931dd1..000000000 --- a/VisualStudio/examples/osgdepthshadow/osgdepthshadow.dsp +++ /dev/null @@ -1,106 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgdepthshadow" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgdepthshadow - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgdepthshadow.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgdepthshadow.mak" CFG="Example osgdepthshadow - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgdepthshadow - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgdepthshadow - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgdepthshadow - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgdepthshadow.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgdepthshadow - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# SUBTRACT CPP /Fr -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgdepthshadowd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgdepthshadow - Win32 Release" -# Name "Example osgdepthshadow - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\examples\osgdepthshadow\osgdepthshadow.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "" -# End Group -# End Target -# End Project diff --git a/VisualStudio/examples/osgdistortion/osgdistortion.dsp b/VisualStudio/examples/osgdistortion/osgdistortion.dsp deleted file mode 100644 index 52319fa2e..000000000 --- a/VisualStudio/examples/osgdistortion/osgdistortion.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgdistortion" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgdistortion - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgdistortion.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgdistortion.mak" CFG="Example osgdistortion - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgdistortion - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgdistortion - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgdistortion - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgdistortion.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgdistortion - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgdistortiond.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgdistortion - Win32 Release" -# Name "Example osgdistortion - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgdistortion\osgdistortion.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgfadetext/osgfadetext.dsp b/VisualStudio/examples/osgfadetext/osgfadetext.dsp deleted file mode 100644 index 0e9e26334..000000000 --- a/VisualStudio/examples/osgfadetext/osgfadetext.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgfadetext" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgfadetext - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgfadetext.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgfadetext.mak" CFG="Example osgfadetext - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgfadetext - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgfadetext - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgfadetext - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib gdal_i.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgfadetext.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgfadetext - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib gdal_i.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgfadetextd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgfadetext - Win32 Release" -# Name "Example osgfadetext - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgfadetext\osgfadetext.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgforest/osgforest.dsp b/VisualStudio/examples/osgforest/osgforest.dsp deleted file mode 100755 index da4e798a2..000000000 --- a/VisualStudio/examples/osgforest/osgforest.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgforest" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgforest - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgforest.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgforest.mak" CFG="Example osgforest - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgforest - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgforest - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgforest - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgforest.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgforest - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgforestd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgforest - Win32 Release" -# Name "Example osgforest - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgforest\osgforest.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgfxbrowser/osgfxbrowser.dsp b/VisualStudio/examples/osgfxbrowser/osgfxbrowser.dsp deleted file mode 100644 index 5304754bd..000000000 --- a/VisualStudio/examples/osgfxbrowser/osgfxbrowser.dsp +++ /dev/null @@ -1,122 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgfxbrowser" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgfxbrowser - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgfxbrowser.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgfxbrowser.mak" CFG="Example osgfxbrowser - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgfxbrowser - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgfxbrowser - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgfxbrowser - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../bin" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE MTL /nologo /win32 -# ADD MTL /nologo /win32 -# ADD BASE CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /GZ /Zm200 /c -# ADD BASE RSC /l 0x409 -# ADD RSC /l 0x409 -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib opengl32.lib glu32.lib osgd.lib osgosgUtild.lib osgDBd.lib osgUtild.lib osgGAd.lib osgTextd.lib /nologo /subsystem:console /debug /machine:IX86 /out:"..\..\..\bin\osgfxbrowserd.exe" /pdbtype:sept -# SUBTRACT BASE LINK32 /pdb:none -# ADD LINK32 OpenThreadsWin32d.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib opengl32.lib glu32.lib /nologo /subsystem:console /debug /machine:IX86 /out:"$(OutDir)/osgfxbrowserd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "Example osgfxbrowser - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../bin" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE MTL /nologo /win32 -# ADD MTL /nologo /win32 -# ADD BASE CPP /nologo /MD /W3 /GR /GX /Zi /O2 /I "../../../include" /I "../../../../OpenThreads/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /GF /c -# ADD CPP /nologo /MD /W3 /GR /GX /Zi /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /GF /Zm200 /c -# ADD BASE RSC /l 0x409 -# ADD RSC /l 0x409 -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib opengl32.lib glu32.lib osg.lib osgosgUtil.lib osgDB.lib osgUtil.lib osgGA.lib osgText.lib /nologo /subsystem:console /debug /machine:IX86 /pdbtype:sept /opt:ref /opt:icf -# ADD LINK32 OpenThreadsWin32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib opengl32.lib glu32.lib /nologo /subsystem:console /debug /machine:IX86 /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" /opt:ref /opt:icf /out:"$(OutDir)/osgfxbrowser.exe" - -!ENDIF - -# Begin Target - -# Name "Example osgfxbrowser - Win32 Debug" -# Name "Example osgfxbrowser - Win32 Release" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;def;odl;idl;hpj;bat;asm" -# Begin Source File - -SOURCE=..\..\..\examples\osgfxbrowser\Frame.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgfxbrowser\Frame.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgfxbrowser\osgfxbrowser.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;inc" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# End Project diff --git a/VisualStudio/examples/osggeodemo/osggeodemo.dsp b/VisualStudio/examples/osggeodemo/osggeodemo.dsp deleted file mode 100755 index 4eb97cd0f..000000000 --- a/VisualStudio/examples/osggeodemo/osggeodemo.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osggeodemo" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osggeodemo - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osggeodemo.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osggeodemo.mak" CFG="Example osggeodemo - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osggeodemo - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osggeodemo - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osggeodemo - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osggeodemo.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osggeodemo - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osggeodemod.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osggeodemo - Win32 Release" -# Name "Example osggeodemo - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osggeodemo\osggeodemo.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osggeometry/osggeometry.dsp b/VisualStudio/examples/osggeometry/osggeometry.dsp deleted file mode 100644 index 2ea33fa06..000000000 --- a/VisualStudio/examples/osggeometry/osggeometry.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osggeometry" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osggeometry - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osggeometry.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osggeometry.mak" CFG="Example osggeometry - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osggeometry - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osggeometry - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osggeometry - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osggeometry.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osggeometry - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osggeometryd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osggeometry - Win32 Release" -# Name "Example osggeometry - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osggeometry\osggeometry.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osghangglide/osghangglide.dsp b/VisualStudio/examples/osghangglide/osghangglide.dsp deleted file mode 100644 index 13a33c59c..000000000 --- a/VisualStudio/examples/osghangglide/osghangglide.dsp +++ /dev/null @@ -1,158 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osghangglide" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osghangglide - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osghangglide.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osghangglide.mak" CFG="Example osghangglide - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osghangglide - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osghangglide - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osghangglide - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osghangglide.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osghangglide - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# SUBTRACT CPP /Fr -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osghangglided.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osghangglide - Win32 Release" -# Name "Example osghangglide - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\examples\osghangglide\Base.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osghangglide\GliderManipulator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osghangglide\Hat.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osghangglide\osghangglide.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osghangglide\Sky.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osghangglide\Tank.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osghangglide\Terrain.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osghangglide\Trees.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter ";h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\examples\osghangglide\GliderManipulator.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osghangglide\Hat.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osghangglide\terrain_coords.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osghangglide\terrain_normals.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osghangglide\terrain_texcoords.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "" -# End Group -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# End Project diff --git a/VisualStudio/examples/osghud/osghud.dsp b/VisualStudio/examples/osghud/osghud.dsp deleted file mode 100755 index 701a5d3c6..000000000 --- a/VisualStudio/examples/osghud/osghud.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osghud" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osghud - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osghud.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osghud.mak" CFG="Example osghud - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osghud - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osghud - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osghud - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osghud.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osghud - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osghudd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osghud - Win32 Release" -# Name "Example osghud - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osghud\osghud.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgimpostor/osgimpostor.dsp b/VisualStudio/examples/osgimpostor/osgimpostor.dsp deleted file mode 100755 index ffdd077fb..000000000 --- a/VisualStudio/examples/osgimpostor/osgimpostor.dsp +++ /dev/null @@ -1,118 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgimpostor" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgimpostor - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgimpostor.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgimpostor.mak" CFG="Example osgimpostor - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgimpostor - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgimpostor - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgimpostor - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgimpostor.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgimpostor - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# SUBTRACT CPP /Fr -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgimpostord.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgimpostor - Win32 Release" -# Name "Example osgimpostor - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\examples\osgimpostor\osgimpostor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgimpostor\TestManipulator.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter ";h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\examples\osgimpostor\TestManipulator.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "" -# End Group -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# End Project diff --git a/VisualStudio/examples/osgintersection/osgintersection.dsp b/VisualStudio/examples/osgintersection/osgintersection.dsp deleted file mode 100644 index ccf104350..000000000 --- a/VisualStudio/examples/osgintersection/osgintersection.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgintersection" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgintersection - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgintersection.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgintersection.mak" CFG="Example osgintersection - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgintersection - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgintersection - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgintersection - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgintersection.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgintersection - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgintersectiond.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgintersection - Win32 Release" -# Name "Example osgintersection - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgintersection\osgintersection.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgintrospection/example_osgintrospection.dsp b/VisualStudio/examples/osgintrospection/example_osgintrospection.dsp deleted file mode 100644 index 43737f4f8..000000000 --- a/VisualStudio/examples/osgintrospection/example_osgintrospection.dsp +++ /dev/null @@ -1,110 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgintrospection" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgintrospection - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgintrospection.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgintrospection.mak" CFG="Example osgintrospection - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgintrospection - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgintrospection - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgintrospection - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgintrospection.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgintrospection - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# SUBTRACT CPP /Fr -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgintrospectiond.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgintrospection - Win32 Release" -# Name "Example osgintrospection - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\examples\osgintrospection\osgintrospection.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter ";h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "" -# End Group -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# End Project diff --git a/VisualStudio/examples/osgkeyboard/osgkeyboard.dsp b/VisualStudio/examples/osgkeyboard/osgkeyboard.dsp deleted file mode 100644 index e49c823a5..000000000 --- a/VisualStudio/examples/osgkeyboard/osgkeyboard.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgkeyboard" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgkeyboard - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgkeyboard.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgkeyboard.mak" CFG="Example osgkeyboard - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgkeyboard - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgkeyboard - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgkeyboard - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgkeyboard.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgkeyboard - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgkeyboardd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgkeyboard - Win32 Release" -# Name "Example osgkeyboard - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgkeyboard\osgkeyboard.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgkeyboardmouse/osgkeyboardmouse.dsp b/VisualStudio/examples/osgkeyboardmouse/osgkeyboardmouse.dsp deleted file mode 100644 index a31923cb9..000000000 --- a/VisualStudio/examples/osgkeyboardmouse/osgkeyboardmouse.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgkeyboardmouse" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgkeyboardmouse - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgkeyboardmouse.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgkeyboardmouse.mak" CFG="Example osgkeyboardmouse - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgkeyboardmouse - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgkeyboardmouse - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgkeyboardmouse - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgkeyboardmouse.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgkeyboardmouse - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgkeyboardmoused.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgkeyboardmouse - Win32 Release" -# Name "Example osgkeyboardmouse - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgkeyboardmouse\osgkeyboardmouse.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osglauncher/osglauncher.dsp b/VisualStudio/examples/osglauncher/osglauncher.dsp deleted file mode 100644 index 450ed626a..000000000 --- a/VisualStudio/examples/osglauncher/osglauncher.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osglauncher" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osglauncher - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osglauncher.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osglauncher.mak" CFG="Example osglauncher - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osglauncher - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osglauncher - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osglauncher - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osglauncher.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osglauncher - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osglauncherd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osglauncher - Win32 Release" -# Name "Example osglauncher - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osglauncher\osglauncher.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osglight/osglight.dsp b/VisualStudio/examples/osglight/osglight.dsp deleted file mode 100644 index e6cda68a9..000000000 --- a/VisualStudio/examples/osglight/osglight.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osglight" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osglight - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osglight.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osglight.mak" CFG="Example osglight - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osglight - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osglight - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osglight - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osglight.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osglight - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osglightd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osglight - Win32 Release" -# Name "Example osglight - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osglight\osglight.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osglightpoint/osglightpoint.dsp b/VisualStudio/examples/osglightpoint/osglightpoint.dsp deleted file mode 100644 index 6145a6cfd..000000000 --- a/VisualStudio/examples/osglightpoint/osglightpoint.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osglightpoint" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osglightpoint - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osglightpoint.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osglightpoint.mak" CFG="Example osglightpoint - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osglightpoint - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osglightpoint - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osglightpoint - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osglightpoint.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osglightpoint - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osglightpointd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osglightpoint - Win32 Release" -# Name "Example osglightpoint - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osglightpoint\osglightpoint.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osglogicop/osglogicop.dsp b/VisualStudio/examples/osglogicop/osglogicop.dsp deleted file mode 100644 index 56ca6a456..000000000 --- a/VisualStudio/examples/osglogicop/osglogicop.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osglogicop" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osglogicop - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osglogicop.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osglogicop.mak" CFG="Example osglogicop - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osglogicop - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osglogicop - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osglogicop - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osglogicop.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osglogicop - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osglogicopd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osglogicop - Win32 Release" -# Name "Example osglogicop - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osglogicop\osglogicop.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osglogo/osglogo.dsp b/VisualStudio/examples/osglogo/osglogo.dsp deleted file mode 100755 index 455dd060a..000000000 --- a/VisualStudio/examples/osglogo/osglogo.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osglogo" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osglogo - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osglogo.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osglogo.mak" CFG="Example osglogo - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osglogo - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osglogo - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osglogo - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osglogo.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osglogo - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osglogod.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osglogo - Win32 Release" -# Name "Example osglogo - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osglogo\osglogo.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgmanipulator/osgmanipulatordemo.dsp b/VisualStudio/examples/osgmanipulator/osgmanipulatordemo.dsp deleted file mode 100644 index 6ad1b8418..000000000 --- a/VisualStudio/examples/osgmanipulator/osgmanipulatordemo.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgmanipulator" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgmanipulator - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgmanipulatordemo.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgmanipulatordemo.mak" CFG="Example osgmanipulator - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgmanipulator - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgmanipulator - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgmanipulator - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgmanipulator.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgmanipulator - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgmanipulatord.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgmanipulator - Win32 Release" -# Name "Example osgmanipulator - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgmanipulator\osgmanipulator.cpp -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Group -# End Project diff --git a/VisualStudio/examples/osgmotionblur/osgmotionblur.dsp b/VisualStudio/examples/osgmotionblur/osgmotionblur.dsp deleted file mode 100644 index 2998533df..000000000 --- a/VisualStudio/examples/osgmotionblur/osgmotionblur.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgmotionblur" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgmotionblur - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgmotionblur.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgmotionblur.mak" CFG="Example osgmotionblur - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgmotionblur - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgmotionblur - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgmotionblur - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgmotionblur.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgmotionblur - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgmotionblurd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgmotionblur - Win32 Release" -# Name "Example osgmotionblur - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgmotionblur\osgmotionblur.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgmovie/osgmovie.dsp b/VisualStudio/examples/osgmovie/osgmovie.dsp deleted file mode 100644 index 6329cc3da..000000000 --- a/VisualStudio/examples/osgmovie/osgmovie.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgmovie" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgmovie - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgmovie.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgmovie.mak" CFG="Example osgmovie - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgmovie - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgmovie - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgmovie - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgmovie.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgmovie - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgmovied.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgmovie - Win32 Release" -# Name "Example osgmovie - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgmovie\osgmovie.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgmultiplecameras/osgmultiplecameras.dsp b/VisualStudio/examples/osgmultiplecameras/osgmultiplecameras.dsp deleted file mode 100644 index 9191abc22..000000000 --- a/VisualStudio/examples/osgmultiplecameras/osgmultiplecameras.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgmultiplecameras" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgmultiplecameras - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgmultiplecameras.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgmultiplecameras.mak" CFG="Example osgmultiplecameras - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgmultiplecameras - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgmultiplecameras - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgmultiplecameras - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgmultiplecameras.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgmultiplecameras - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgmultiplecamerasd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgmultiplecameras - Win32 Release" -# Name "Example osgmultiplecameras - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgmultiplecameras\osgmultiplecameras.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgmultitexture/osgmultitexture.dsp b/VisualStudio/examples/osgmultitexture/osgmultitexture.dsp deleted file mode 100644 index 422708dce..000000000 --- a/VisualStudio/examples/osgmultitexture/osgmultitexture.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgmultitexture" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgmultitexture - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgmultitexture.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgmultitexture.mak" CFG="Example osgmultitexture - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgmultitexture - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgmultitexture - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgmultitexture - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgmultitexture.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgmultitexture - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgmultitextured.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgmultitexture - Win32 Release" -# Name "Example osgmultitexture - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgmultitexture\osgmultitexture.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgoccluder/osgoccluder.dsp b/VisualStudio/examples/osgoccluder/osgoccluder.dsp deleted file mode 100644 index 757db83fb..000000000 --- a/VisualStudio/examples/osgoccluder/osgoccluder.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgoccluder" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgoccluder - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgoccluder.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgoccluder.mak" CFG="Example osgoccluder - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgoccluder - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgoccluder - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgoccluder - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgoccluder.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgoccluder - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgoccluderd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgoccluder - Win32 Release" -# Name "Example osgoccluder - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgoccluder\osgoccluder.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgpagedlod/osgpagedlod.dsp b/VisualStudio/examples/osgpagedlod/osgpagedlod.dsp deleted file mode 100644 index d6ee0743a..000000000 --- a/VisualStudio/examples/osgpagedlod/osgpagedlod.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgpagedlod" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgpagedlod - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgpagedlod.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgpagedlod.mak" CFG="Example osgpagedlod - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgpagedlod - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgpagedlod - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgpagedlod - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgpagedlod.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgpagedlod - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgpagedlodd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgpagedlod - Win32 Release" -# Name "Example osgpagedlod - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgpagedlod\osgpagedlod.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgparametric/osgparametric.dsp b/VisualStudio/examples/osgparametric/osgparametric.dsp deleted file mode 100755 index c03c8f4fe..000000000 --- a/VisualStudio/examples/osgparametric/osgparametric.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgparametric" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgparametric - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgparametric.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgparametric.mak" CFG="Example osgparametric - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgparametric - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgparametric - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgparametric - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgparametric.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgparametric - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgparametricd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgparametric - Win32 Release" -# Name "Example osgparametric - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgparametric\osgparametric.cpp -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Group -# End Project diff --git a/VisualStudio/examples/osgparticle/osgparticledemo.dsp b/VisualStudio/examples/osgparticle/osgparticledemo.dsp deleted file mode 100644 index d80e154b7..000000000 --- a/VisualStudio/examples/osgparticle/osgparticledemo.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgparticle" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgparticle - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgparticledemo.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgparticledemo.mak" CFG="Example osgparticle - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgparticle - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgparticle - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgparticle - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgparticle.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgparticle - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgparticled.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgparticle - Win32 Release" -# Name "Example osgparticle - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgparticle\osgparticle.cpp -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Group -# End Project diff --git a/VisualStudio/examples/osgparticleeffects/osgparticleeffects.dsp b/VisualStudio/examples/osgparticleeffects/osgparticleeffects.dsp deleted file mode 100644 index 4f81f894d..000000000 --- a/VisualStudio/examples/osgparticleeffects/osgparticleeffects.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgparticleeffects" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgparticleeffects - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgparticleeffects.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgparticleeffects.mak" CFG="Example osgparticleeffects - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgparticleeffects - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgparticleeffects - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgparticleeffects - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgparticleeffects.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgparticleeffects - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgparticleeffectsd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgparticleeffects - Win32 Release" -# Name "Example osgparticleeffects - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgparticleeffects\osgparticleeffects.cpp -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Group -# End Project diff --git a/VisualStudio/examples/osgphotoalbum/osgphotoalbum.dsp b/VisualStudio/examples/osgphotoalbum/osgphotoalbum.dsp deleted file mode 100644 index dc235fe91..000000000 --- a/VisualStudio/examples/osgphotoalbum/osgphotoalbum.dsp +++ /dev/null @@ -1,126 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgphotoalbum" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgphotoalbum - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgphotoalbum.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgphotoalbum.mak" CFG="Example osgphotoalbum - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgphotoalbum - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgphotoalbum - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgphotoalbum - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgphotoalbum.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgphotoalbum - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# SUBTRACT CPP /Fr -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgphotoalbumd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgphotoalbum - Win32 Release" -# Name "Example osgphotoalbum - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\examples\osgphotoalbum\ImageReaderWriter.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgphotoalbum\osgphotoalbum.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgphotoalbum\PhotoArchive.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter ";h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\examples\osgphotoalbum\ImageReaderWriter.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgphotoalbum\PhotoArchive.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Group -# End Target -# End Project diff --git a/VisualStudio/examples/osgpick/osgpick.dsp b/VisualStudio/examples/osgpick/osgpick.dsp deleted file mode 100644 index af0e63660..000000000 --- a/VisualStudio/examples/osgpick/osgpick.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgpick" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgpick - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgpick.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgpick.mak" CFG="Example osgpick - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgpick - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgpick - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgpick - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgpick.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgpick - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgpickd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgpick - Win32 Release" -# Name "Example osgpick - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgpick\osgpick.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgplanets/osgplanets.dsp b/VisualStudio/examples/osgplanets/osgplanets.dsp deleted file mode 100644 index 90e8d02b3..000000000 --- a/VisualStudio/examples/osgplanets/osgplanets.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgplanets" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgplanets - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgplanets.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgplanets.mak" CFG="Example osgplanets - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgplanets - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgplanets - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgplanets - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgplanets.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgplanets - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgplanetsd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgplanets - Win32 Release" -# Name "Example osgplanets - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgplanets\osgplanets.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgpoints/osgpoints.dsp b/VisualStudio/examples/osgpoints/osgpoints.dsp deleted file mode 100644 index aa55ecec7..000000000 --- a/VisualStudio/examples/osgpoints/osgpoints.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgpoints" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgpoints - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgpoints.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgpoints.mak" CFG="Example osgpoints - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgpoints - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgpoints - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgpoints - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgpoints.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgpoints - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgpointsd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgpoints - Win32 Release" -# Name "Example osgpoints - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgpoints\osgpoints.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgpointsprite/osgpointsprite.dsp b/VisualStudio/examples/osgpointsprite/osgpointsprite.dsp deleted file mode 100644 index 689910b0d..000000000 --- a/VisualStudio/examples/osgpointsprite/osgpointsprite.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgpointsprite" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgpointsprite - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgpointsprite.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgpointsprite.mak" CFG="Example osgpointsprite - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgpointsprite - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgpointsprite - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgpointsprite - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgpointsprite.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgpointsprite - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgpointsprited.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgpointsprite - Win32 Release" -# Name "Example osgpointsprite - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgpointsprite\osgpointsprite.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgprecipitation/osgprecipitation.dsp b/VisualStudio/examples/osgprecipitation/osgprecipitation.dsp deleted file mode 100644 index 18670b07d..000000000 --- a/VisualStudio/examples/osgprecipitation/osgprecipitation.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgprecipitation" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgprecipitation - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgprecipitation.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgprecipitation.mak" CFG="Example osgprecipitation - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgprecipitation - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgprecipitation - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgprecipitation - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgprecipitation.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgprecipitation - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgprecipitationd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgprecipitation - Win32 Release" -# Name "Example osgprecipitation - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgprecipitation\osgprecipitation.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgprerender/osgprerender.dsp b/VisualStudio/examples/osgprerender/osgprerender.dsp deleted file mode 100644 index 12f516171..000000000 --- a/VisualStudio/examples/osgprerender/osgprerender.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgprerender" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgprerender - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgprerender.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgprerender.mak" CFG="Example osgprerender - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgprerender - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgprerender - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgprerender - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgprerender.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgprerender - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgprerenderd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgprerender - Win32 Release" -# Name "Example osgprerender - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgprerender\osgprerender.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgprerendercubemap/osgprerendercubemap.dsp b/VisualStudio/examples/osgprerendercubemap/osgprerendercubemap.dsp deleted file mode 100644 index 8642f690f..000000000 --- a/VisualStudio/examples/osgprerendercubemap/osgprerendercubemap.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgprerendercubemap" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgprerendercubemap - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgprerendercubemap.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgprerendercubemap.mak" CFG="Example osgprerendercubemap - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgprerendercubemap - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgprerendercubemap - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgprerendercubemap - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgprerendercubemap.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgprerendercubemap - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgprerendercubemapd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgprerendercubemap - Win32 Release" -# Name "Example osgprerendercubemap - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgprerendercubemap\osgprerendercubemap.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgreflect/osgreflect.dsp b/VisualStudio/examples/osgreflect/osgreflect.dsp deleted file mode 100755 index d25cb939b..000000000 --- a/VisualStudio/examples/osgreflect/osgreflect.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgreflect" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgreflect - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgreflect.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgreflect.mak" CFG="Example osgreflect - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgreflect - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgreflect - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgreflect - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgreflect.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgreflect - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgreflectd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgreflect - Win32 Release" -# Name "Example osgreflect - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgreflect\osgreflect.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgscalarbar/osgscalarbar.dsp b/VisualStudio/examples/osgscalarbar/osgscalarbar.dsp deleted file mode 100644 index d9d214ce3..000000000 --- a/VisualStudio/examples/osgscalarbar/osgscalarbar.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgscalarbar" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgscalarbar - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgscalarbar.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgscalarbar.mak" CFG="Example osgscalarbar - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgscalarbar - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgscalarbar - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgscalarbar - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgscalarbar.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgscalarbar - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgscalarbard.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgscalarbar - Win32 Release" -# Name "Example osgscalarbar - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgscalarbar\osgscalarbar.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgscribe/osgscribe.dsp b/VisualStudio/examples/osgscribe/osgscribe.dsp deleted file mode 100755 index b4364a01e..000000000 --- a/VisualStudio/examples/osgscribe/osgscribe.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgscribe" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgscribe - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgscribe.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgscribe.mak" CFG="Example osgscribe - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgscribe - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgscribe - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgscribe - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgscribe.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgscribe - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgscribed.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgscribe - Win32 Release" -# Name "Example osgscribe - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgscribe\osgscribe.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgsequence/osgsequence.dsp b/VisualStudio/examples/osgsequence/osgsequence.dsp deleted file mode 100644 index 816886f38..000000000 --- a/VisualStudio/examples/osgsequence/osgsequence.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgsequence" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgsequence - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgsequence.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgsequence.mak" CFG="Example osgsequence - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgsequence - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgsequence - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgsequence - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgsequence.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgsequence - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgsequenced.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgsequence - Win32 Release" -# Name "Example osgsequence - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgsequence\osgsequence.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgshaders/osgshaders.dsp b/VisualStudio/examples/osgshaders/osgshaders.dsp deleted file mode 100644 index 1647caaff..000000000 --- a/VisualStudio/examples/osgshaders/osgshaders.dsp +++ /dev/null @@ -1,117 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgshaders" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgshaders - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgshaders.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgshaders.mak" CFG="Example osgshaders - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgshaders - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgshaders - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgshaders - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgshaders.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgshaders - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgshadersd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgshaders - Win32 Release" -# Name "Example osgshaders - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgshaders\GL2Scene.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgshaders\GL2Scene.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgshaders\Noise.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgshaders\Noise.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgshaders\osgshaders.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgshaderterrain/osgshaderterrain.dsp b/VisualStudio/examples/osgshaderterrain/osgshaderterrain.dsp deleted file mode 100644 index 998475df1..000000000 --- a/VisualStudio/examples/osgshaderterrain/osgshaderterrain.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgshaderterrain" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgshaderterrain - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgshaderterrain.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgshaderterrain.mak" CFG="Example osgshaderterrain - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgshaderterrain - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgshaderterrain - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgshaderterrain - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgshaderterrain.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgshaderterrain - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgshaderterraind.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgshaderterrain - Win32 Release" -# Name "Example osgshaderterrain - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgshaderterrain\osgshaderterrain.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgshadow/example_osgshadow.dsp b/VisualStudio/examples/osgshadow/example_osgshadow.dsp deleted file mode 100644 index 7d340f95f..000000000 --- a/VisualStudio/examples/osgshadow/example_osgshadow.dsp +++ /dev/null @@ -1,106 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgshadow" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgshadow - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgshadow.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgshadow.mak" CFG="Example osgshadow - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgshadow - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgshadow - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgshadow - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgshadow.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgshadow - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# SUBTRACT CPP /Fr -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgshadowd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgshadow - Win32 Release" -# Name "Example osgshadow - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\examples\osgshadow\osgshadow.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "" -# End Group -# End Target -# End Project diff --git a/VisualStudio/examples/osgshadowtexture/osgshadowtexture.dsp b/VisualStudio/examples/osgshadowtexture/osgshadowtexture.dsp deleted file mode 100644 index 5cb96ad20..000000000 --- a/VisualStudio/examples/osgshadowtexture/osgshadowtexture.dsp +++ /dev/null @@ -1,117 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgshadowtexture" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgshadowtexture - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgshadowtexture.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgshadowtexture.mak" CFG="Example osgshadowtexture - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgshadowtexture - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgshadowtexture - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgshadowtexture - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgshadowtexture.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgshadowtexture - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgshadowtextured.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgshadowtexture - Win32 Release" -# Name "Example osgshadowtexture - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\examples\osgshadowtexture\CreateShadowedScene.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgshadowtexture\osgshadowtexture.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter ";h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\examples\osgshadowtexture\CreateShadowedScene.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Group -# End Target -# End Project diff --git a/VisualStudio/examples/osgshape/osgshape.dsp b/VisualStudio/examples/osgshape/osgshape.dsp deleted file mode 100755 index ca33d9742..000000000 --- a/VisualStudio/examples/osgshape/osgshape.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgshape" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgshape - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgshape.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgshape.mak" CFG="Example osgshape - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgshape - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgshape - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgshape - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgshape.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgshape - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgshaped.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgshape - Win32 Release" -# Name "Example osgshape - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgshape\osgshape.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgsimple/osgsimple.dsp b/VisualStudio/examples/osgsimple/osgsimple.dsp deleted file mode 100644 index 49a82a9a0..000000000 --- a/VisualStudio/examples/osgsimple/osgsimple.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgsimple" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgsimple - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgsimple.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgsimple.mak" CFG="Example osgsimple - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgsimple - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgsimple - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgsimple - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgsimple.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgsimple - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgsimpled.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgsimple - Win32 Release" -# Name "Example osgsimple - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgsimple\osgsimple.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgsimpleviewerFLTK/osgsimpleviewerFLTK.dsp b/VisualStudio/examples/osgsimpleviewerFLTK/osgsimpleviewerFLTK.dsp deleted file mode 100644 index fd3bdb914..000000000 --- a/VisualStudio/examples/osgsimpleviewerFLTK/osgsimpleviewerFLTK.dsp +++ /dev/null @@ -1,99 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgsimpleviewerFLTK" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgsimpleviewerFLTK - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgsimpleviewerFLTK.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgsimpleviewerFLTK.mak" CFG="Example osgsimpleviewerFLTK - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgsimpleviewerFLTK - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgsimpleviewerFLTK - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgsimpleviewerFLTK - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 fltk32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgsimpleviewerFLTK.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgsimpleviewerFLTK - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 fltk32D.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /out:"$(OutDir)/osgsimpleviewerFLTKd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgsimpleviewerFLTK - Win32 Release" -# Name "Example osgsimpleviewerFLTK - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgsimpleviewerFLTK\osgsimpleviewerFLTK.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgsimpleviewerGLUT/osgsimpleviewerGLUT.dsp b/VisualStudio/examples/osgsimpleviewerGLUT/osgsimpleviewerGLUT.dsp deleted file mode 100644 index 6faeef03b..000000000 --- a/VisualStudio/examples/osgsimpleviewerGLUT/osgsimpleviewerGLUT.dsp +++ /dev/null @@ -1,99 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgsimpleviewerGLUT" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgsimpleviewerGLUT - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgsimpleviewerGLUT.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgsimpleviewerGLUT.mak" CFG="Example osgsimpleviewerGLUT - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgsimpleviewerGLUT - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgsimpleviewerGLUT - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgsimpleviewerGLUT - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 glut32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgsimpleviewerGLUT.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgsimpleviewerGLUT - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 glut32D.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /out:"$(OutDir)/osgsimpleviewerGLUTd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgsimpleviewerGLUT - Win32 Release" -# Name "Example osgsimpleviewerGLUT - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgsimpleviewerGLUT\osgsimpleviewerGLUT.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgsimpleviewerQT3/osgsimpleviewerQT3.dsp b/VisualStudio/examples/osgsimpleviewerQT3/osgsimpleviewerQT3.dsp deleted file mode 100644 index e78d9ee2a..000000000 --- a/VisualStudio/examples/osgsimpleviewerQT3/osgsimpleviewerQT3.dsp +++ /dev/null @@ -1,99 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgsimpleviewerQT3" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgsimpleviewerQT3 - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgsimpleviewerQT3.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgsimpleviewerQT3.mak" CFG="Example osgsimpleviewerQT3 - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgsimpleviewerQT3 - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgsimpleviewerQT3 - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgsimpleviewerQT3 - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 qt32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgsimpleviewerQT3.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgsimpleviewerQT3 - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 qt32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /out:"$(OutDir)/osgsimpleviewerQT3d.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgsimpleviewerQT3 - Win32 Release" -# Name "Example osgsimpleviewerQT3 - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgsimpleviewerQT3\osgsimpleviewerQT3.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgsimpleviewerQT4/osgsimpleviewerQT4.dsp b/VisualStudio/examples/osgsimpleviewerQT4/osgsimpleviewerQT4.dsp deleted file mode 100644 index e5a7d07bb..000000000 --- a/VisualStudio/examples/osgsimpleviewerQT4/osgsimpleviewerQT4.dsp +++ /dev/null @@ -1,99 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgsimpleviewerQT4" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgsimpleviewerQT4 - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgsimpleviewerQT4.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgsimpleviewerQT4.mak" CFG="Example osgsimpleviewerQT4 - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgsimpleviewerQT4 - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgsimpleviewerQT4 - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgsimpleviewerQT4 - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /I "$(QTDIR)/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 QtCore4.lib QtGui4.lib QtOpenGL4.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgsimpleviewerQT4.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" /libpath:"$(QTDIR)/lib" - -!ELSEIF "$(CFG)" == "Example osgsimpleviewerQT4 - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /I "$(QTDIR)/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 QtCore4.lib QtGui4.lib QtOpenGL4.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /out:"$(OutDir)/osgsimpleviewerQT4d.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" /libpath:"$(QTDIR)/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgsimpleviewerQT4 - Win32 Release" -# Name "Example osgsimpleviewerQT4 - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgsimpleviewerQT4\osgsimpleviewerQT4.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgsimpleviewerSDL/osgsimpleviewerSDL.dsp b/VisualStudio/examples/osgsimpleviewerSDL/osgsimpleviewerSDL.dsp deleted file mode 100644 index c7ee700c4..000000000 --- a/VisualStudio/examples/osgsimpleviewerSDL/osgsimpleviewerSDL.dsp +++ /dev/null @@ -1,99 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgsimpleviewerSDL" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgsimpleviewerSDL - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgsimpleviewerSDL.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgsimpleviewerSDL.mak" CFG="Example osgsimpleviewerSDL - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgsimpleviewerSDL - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgsimpleviewerSDL - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgsimpleviewerSDL - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 sdl32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgsimpleviewerSDL.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgsimpleviewerSDL - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 sdl32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /out:"$(OutDir)/osgsimpleviewerSDLd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgsimpleviewerSDL - Win32 Release" -# Name "Example osgsimpleviewerSDL - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgsimpleviewerSDL\osgsimpleviewerSDL.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgsimplifier/osgsimplifier.dsp b/VisualStudio/examples/osgsimplifier/osgsimplifier.dsp deleted file mode 100644 index 14d8dcea7..000000000 --- a/VisualStudio/examples/osgsimplifier/osgsimplifier.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgsimplifier" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgsimplifier - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgsimplifier.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgsimplifier.mak" CFG="Example osgsimplifier - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgsimplifier - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgsimplifier - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgsimplifier - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgsimplifier.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgsimplifier - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgsimplifierd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgsimplifier - Win32 Release" -# Name "Example osgsimplifier - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgsimplifier\osgsimplifier.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgsimulation/osgsimulation.dsp b/VisualStudio/examples/osgsimulation/osgsimulation.dsp deleted file mode 100644 index 3b9fd3558..000000000 --- a/VisualStudio/examples/osgsimulation/osgsimulation.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgsimulation" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgsimulation - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgsimulation.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgsimulation.mak" CFG="Example osgsimulation - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgsimulation - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgsimulation - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgsimulation - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib gdal_i.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgsimulation.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgsimulation - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib gdal_i.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgsimulationd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgsimulation - Win32 Release" -# Name "Example osgsimulation - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgsimulation\osgsimulation.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgslice/osgslice.dsp b/VisualStudio/examples/osgslice/osgslice.dsp deleted file mode 100644 index 58bce104c..000000000 --- a/VisualStudio/examples/osgslice/osgslice.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgslice" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgslice - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgslice.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgslice.mak" CFG="Example osgslice - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgslice - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgslice - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgslice - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgslice.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgslice - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgsliced.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgslice - Win32 Release" -# Name "Example osgslice - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgslice\osgslice.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgspacewarp/osgspacewarp.dsp b/VisualStudio/examples/osgspacewarp/osgspacewarp.dsp deleted file mode 100644 index b4eaf4a9a..000000000 --- a/VisualStudio/examples/osgspacewarp/osgspacewarp.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgspacewarp" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgspacewarp - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgspacewarp.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgspacewarp.mak" CFG="Example osgspacewarp - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgspacewarp - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgspacewarp - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgspacewarp - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgspacewarp.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgspacewarp - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgspacewarpd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgspacewarp - Win32 Release" -# Name "Example osgspacewarp - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgspacewarp\osgspacewarp.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgspheresegment/osgspheresegment.dsp b/VisualStudio/examples/osgspheresegment/osgspheresegment.dsp deleted file mode 100644 index 35bedc706..000000000 --- a/VisualStudio/examples/osgspheresegment/osgspheresegment.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgspheresegment" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgspheresegment - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgspheresegment.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgspheresegment.mak" CFG="Example osgspheresegment - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgspheresegment - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgspheresegment - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgspheresegment - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgspheresegment.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgspheresegment - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgspheresegmentd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgspheresegment - Win32 Release" -# Name "Example osgspheresegment - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgspheresegment\osgspheresegment.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgspotlight/osgspotlight.dsp b/VisualStudio/examples/osgspotlight/osgspotlight.dsp deleted file mode 100644 index bd5750df6..000000000 --- a/VisualStudio/examples/osgspotlight/osgspotlight.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgspotlight" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgspotlight - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgspotlight.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgspotlight.mak" CFG="Example osgspotlight - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgspotlight - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgspotlight - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgspotlight - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgspotlight.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgspotlight - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgspotlightd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgspotlight - Win32 Release" -# Name "Example osgspotlight - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgspotlight\osgspotlight.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgstereoimage/osgstereoimage.dsp b/VisualStudio/examples/osgstereoimage/osgstereoimage.dsp deleted file mode 100755 index eff2f1a97..000000000 --- a/VisualStudio/examples/osgstereoimage/osgstereoimage.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgstereoimage" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgstereoimage - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgstereoimage.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgstereoimage.mak" CFG="Example osgstereoimage - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgstereoimage - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgstereoimage - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgstereoimage - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgstereoimage.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgstereoimage - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgstereoimaged.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgstereoimage - Win32 Release" -# Name "Example osgstereoimage - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgstereoimage\osgstereoimage.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgteapot/osgteapot.dsp b/VisualStudio/examples/osgteapot/osgteapot.dsp deleted file mode 100755 index e854ccf31..000000000 --- a/VisualStudio/examples/osgteapot/osgteapot.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgteapot" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgteapot - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgteapot.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgteapot.mak" CFG="Example osgteapot - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgteapot - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgteapot - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgteapot - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgteapot.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgteapot - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgteapotd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgteapot - Win32 Release" -# Name "Example osgteapot - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgteapot\osgteapot.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgtessellate/osgtessellate.dsp b/VisualStudio/examples/osgtessellate/osgtessellate.dsp deleted file mode 100644 index 6190581a7..000000000 --- a/VisualStudio/examples/osgtessellate/osgtessellate.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgtessellate" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgtessellate - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgtessellate.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgtessellate.mak" CFG="Example osgtessellate - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgtessellate - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgtessellate - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgtessellate - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgtessellate.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgtessellate - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgtessellated.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgtessellate - Win32 Release" -# Name "Example osgtessellate - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgtessellate\osgtessellate.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgtext/osgtextdemo.dsp b/VisualStudio/examples/osgtext/osgtextdemo.dsp deleted file mode 100644 index 3b6e15b88..000000000 --- a/VisualStudio/examples/osgtext/osgtextdemo.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgtext" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgtext - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgtextdemo.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgtextdemo.mak" CFG="Example osgtext - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgtext - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgtext - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgtext - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgtext.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgtext - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgtextd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgtext - Win32 Release" -# Name "Example osgtext - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgtext\osgtext.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgtexture1D/osgtexture1D.dsp b/VisualStudio/examples/osgtexture1D/osgtexture1D.dsp deleted file mode 100644 index 92a7eed0f..000000000 --- a/VisualStudio/examples/osgtexture1D/osgtexture1D.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgtexture1D" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgtexture1D - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgtexture1D.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgtexture1D.mak" CFG="Example osgtexture1D - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgtexture1D - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgtexture1D - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgtexture1D - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgtexture1D.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgtexture1D - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgtexture1Dd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgtexture1D - Win32 Release" -# Name "Example osgtexture1D - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgtexture1D\osgtexture1D.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgtexture2D/osgtexture2D.dsp b/VisualStudio/examples/osgtexture2D/osgtexture2D.dsp deleted file mode 100644 index 447f9f112..000000000 --- a/VisualStudio/examples/osgtexture2D/osgtexture2D.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgtexture2D" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgtexture2D - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgtexture2D.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgtexture2D.mak" CFG="Example osgtexture2D - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgtexture2D - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgtexture2D - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgtexture2D - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgtexture2D.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgtexture2D - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgtexture2Dd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgtexture2D - Win32 Release" -# Name "Example osgtexture2D - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgtexture2D\osgtexture2D.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgtexture3D/osgtexture3D.dsp b/VisualStudio/examples/osgtexture3D/osgtexture3D.dsp deleted file mode 100644 index 1b26f4d40..000000000 --- a/VisualStudio/examples/osgtexture3D/osgtexture3D.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgtexture3D" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgtexture3D - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgtexture3D.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgtexture3D.mak" CFG="Example osgtexture3D - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgtexture3D - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgtexture3D - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgtexture3D - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgtexture3D.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgtexture3D - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgtexture3Dd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgtexture3D - Win32 Release" -# Name "Example osgtexture3D - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgtexture3D\osgtexture3D.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgtexturerectangle/osgtexturerectangle.dsp b/VisualStudio/examples/osgtexturerectangle/osgtexturerectangle.dsp deleted file mode 100644 index 42c201fe2..000000000 --- a/VisualStudio/examples/osgtexturerectangle/osgtexturerectangle.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgtexturerectangle" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgtexturerectangle - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgtexturerectangle.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgtexturerectangle.mak" CFG="Example osgtexturerectangle - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgtexturerectangle - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgtexturerectangle - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgtexturerectangle - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgtexturerectangle.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgtexturerectangle - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgtexturerectangled.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgtexturerectangle - Win32 Release" -# Name "Example osgtexturerectangle - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgtexturerectangle\osgtexturerectangle.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgunittests/osgunittests.dsp b/VisualStudio/examples/osgunittests/osgunittests.dsp deleted file mode 100644 index 039d23939..000000000 --- a/VisualStudio/examples/osgunittests/osgunittests.dsp +++ /dev/null @@ -1,130 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgunittests" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgunittests - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgunittests.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgunittests.mak" CFG="Example osgunittests - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgunittests - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgunittests - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgunittests - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgunittests.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgunittests - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgunittestsd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgunittests - Win32 Release" -# Name "Example osgunittests - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\examples\osgunittests\osgunittests.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgunittests\UnitTestFramework.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgunittests\UnitTests_osg.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgunittests\performance.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter ";h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\examples\osgunittests\UnitTestFramework.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\examples\osgunittests\performance.h -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Group - -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgvertexprogram/osgvertexprogram.dsp b/VisualStudio/examples/osgvertexprogram/osgvertexprogram.dsp deleted file mode 100755 index d4c0dcad5..000000000 --- a/VisualStudio/examples/osgvertexprogram/osgvertexprogram.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgvertexprogram" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgvertexprogram - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgvertexprogram.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgvertexprogram.mak" CFG="Example osgvertexprogram - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgvertexprogram - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgvertexprogram - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgvertexprogram - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgvertexprogram.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgvertexprogram - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgvertexprogramd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgvertexprogram - Win32 Release" -# Name "Example osgvertexprogram - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgvertexprogram\osgvertexprogram.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgvolume/osgvolume.dsp b/VisualStudio/examples/osgvolume/osgvolume.dsp deleted file mode 100644 index 608507fd6..000000000 --- a/VisualStudio/examples/osgvolume/osgvolume.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgvolume" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgvolume - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgvolume.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgvolume.mak" CFG="Example osgvolume - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgvolume - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgvolume - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgvolume - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /Od /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgvolume.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgvolume - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgvolumed.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgvolume - Win32 Release" -# Name "Example osgvolume - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgvolume\osgvolume.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/examples/osgwindows/osgwindows.dsp b/VisualStudio/examples/osgwindows/osgwindows.dsp deleted file mode 100644 index 1aef01a75..000000000 --- a/VisualStudio/examples/osgwindows/osgwindows.dsp +++ /dev/null @@ -1,101 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Example osgwindows" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Example osgwindows - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgwindows.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgwindows.mak" CFG="Example osgwindows - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Example osgwindows - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Example osgwindows - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Example osgwindows - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgwindows.exe" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Example osgwindows - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -MTL=midl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_CONSOLE" /D "_MBCS" /D "FL_DLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /Zm200 /c -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt" /out:"$(OutDir)/osgwindowsd.exe" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /incremental:no - -!ENDIF - -# Begin Target - -# Name "Example osgwindows - Win32 Release" -# Name "Example osgwindows - Win32 Debug" -# Begin Source File - -SOURCE=..\..\..\examples\osgwindows\osgwindows.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\icons\osg_icon.rc -# End Source File -# End Target -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Project diff --git a/VisualStudio/osg/osg.dsp b/VisualStudio/osg/osg.dsp deleted file mode 100755 index 9c33a51d0..000000000 --- a/VisualStudio/osg/osg.dsp +++ /dev/null @@ -1,1240 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Core osg" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=Core osg - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osg.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osg.mak" CFG="Core osg - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Core osg - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "Core osg - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "Core osg - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "Core osg - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Core osg - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "OSG_LIBRARY" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osg.dll" /implib:"../../lib/$(PlatformName)/osg.lib" /libpath:"../../lib/$(PlatformName)" /libpath:"../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Core osg - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# SUBTRACT CPP /X -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /out:"$(OutDir)/osgd.dll" /pdbtype:sept /implib:"../../lib/$(PlatformName)/osgd.lib" /libpath:"../../lib/$(PlatformName)" /libpath:"../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /incremental:no - -!ELSEIF "$(CFG)" == "Core osg - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osg_s.lib" - -!ELSEIF "$(CFG)" == "Core osg - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# SUBTRACT CPP /X -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgd_s.lib" - -!ENDIF - -# Begin Target - -# Name "Core osg - Win32 Release" -# Name "Core osg - Win32 Debug" -# Name "Core osg - Win32 Release Static" -# Name "Core osg - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\osg\AlphaFunc.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\AnimationPath.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\ApplicationUsage.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\ArgumentParser.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Array.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\AutoTransform.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Billboard.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\BlendColor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\BlendEquation.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\BlendFunc.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\BoundingBox.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\BoundingSphere.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\BufferObject.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Camera.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\CameraView.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\ClearNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\ClipNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\ClipPlane.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\ClampColor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\ClusterCullingCallback.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\CollectOccludersVisitor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\ColorMask.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\ColorMatrix.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\ComputeBoundsVisitor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\ConvexPlanarOccluder.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\ConvexPlanarPolygon.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\CoordinateSystemNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\CopyOp.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\CullFace.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\CullingSet.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\CullSettings.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\CullStack.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\DeleteHandler.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Depth.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\DisplaySettings.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Drawable.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\DrawPixels.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Fog.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\FragmentProgram.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\FrameBufferObject.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\FrameStamp.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\FrontFace.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Geode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Geometry.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\GLExtensions.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\GraphicsContext.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\GraphicsThread.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Group.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\dxtctool.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Image.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\ImageStream.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Light.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\LightModel.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\LightSource.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\LineSegment.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\LineStipple.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\LineWidth.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\LOD.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\LogicOp.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Material.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Matrixd.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Matrixf.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\MatrixDecomposition.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\MatrixTransform.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Multisample.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Node.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\NodeCallback.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\NodeTrackerCallback.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\NodeVisitor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Notify.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Object.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\OccluderNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\PagedLOD.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Point.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\PointSprite.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\PolygonMode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\PolygonOffset.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\PolygonStipple.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\PositionAttitudeTransform.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\PrimitiveSet.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Program.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Projection.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\ProxyNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Quat.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Referenced.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Scissor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Sequence.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\ShadeModel.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Shader.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\ShadowVolumeOccluder.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Shape.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\ShapeDrawable.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\State.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\StateAttribute.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\StateSet.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Stats.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Stencil.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\StencilTwoSided.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Switch.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\TexEnv.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\TexEnvCombine.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\TexEnvFilter.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\TexGen.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\TexGenNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\TexMat.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Texture.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Texture1D.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Texture2D.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Texture3D.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\TextureCubeMap.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\TextureRectangle.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\TransferFunction.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Timer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Transform.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Uniform.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Version.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\VertexProgram.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\View.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\Viewport.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter ";h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\Include\Osg\AlphaFunc -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\AnimationPath -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osg\ApplicationUsage -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osg\ArgumentParser -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Array -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osg\AutoTransform -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Billboard -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\BlendColor -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\BlendEquation -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\BlendFunc -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\BoundingBox -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\BoundingSphere -# End Source File -# Begin Source File - -SOURCE=..\..\include\osg\BoundsChecking -# End Source File -# Begin Source File - -SOURCE=..\..\include\osg\BufferObject -# End Source File -# Begin Source File - -SOURCE=..\..\include\osg\Camera -# End Source File -# Begin Source File - -SOURCE=..\..\include\osg\CameraView -# End Source File -# Begin Source File - -SOURCE=..\..\include\osg\ClearNode -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\ClipNode -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\ClipPlane -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\ClampColor -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\ClusterCullingCallback -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\CollectOccludersVisitor -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\ColorMask -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\ColorMatrix -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\ComputeBoundsVisitor -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\ConvexPlanarOccluder -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\ConvexPlanarPolygon -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\CoordinateSystemNode -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\CopyOp -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\CullFace -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\CullingSet -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\CullSettings -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\CullStack -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\DeleteHandler -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Depth -# End Source File -# Begin Source File - -SOURCE=..\..\include\osg\DisplaySettings -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Drawable -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\DrawPixels -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Export -# End Source File -# Begin Source File - -SOURCE=..\..\include\osg\fast_back_stack -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Fog -# End Source File -# Begin Source File - -SOURCE=..\..\include\osg\FragmentProgram -# End Source File -# Begin Source File - -SOURCE=..\..\include\osg\FrameBufferObject -# End Source File -# Begin Source File - -SOURCE=..\..\include\osg\FrameStamp -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\FrontFace -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Geode -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Geometry -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Gl -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\GLExtensions -# End Source File -# Begin Source File - -SOURCE=..\..\include\osg\Glu -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Group -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\GraphicsContext -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\GraphicsThread -# End Source File -# Begin Source File - -SOURCE=..\..\src\osg\dxtctool.h -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Image -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\ImageStream -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\IndexedGeometry -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Light -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\LightModel -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\LightSource -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\LineSegment -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\LineStipple -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\LineWidth -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\LOD -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\LogicOp -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Material -# End Source File -# Begin Source File - -SOURCE=..\..\include\osg\Math -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Matrix -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Matrixd -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Matrixf -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\MatrixTransform -# End Source File -# Begin Source File - -SOURCE=..\..\include\osg\Multisample -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Node -# End Source File -# Begin Source File - -SOURCE=..\..\include\osg\NodeCallback -# End Source File -# Begin Source File - -SOURCE=..\..\include\osg\NodeTrackerCallback -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\NodeVisitor -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Notify -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Object -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\OccluderNode -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\PagedLOD -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Plane -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Point -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\PointSprite -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\PolygonMode -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\PolygonOffset -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\PolygonStipple -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Polytope -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\PositionAttitudeTransform -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\PrimitiveSet -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Projection -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Program -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\ProxyNode -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Quat -# End Source File -# Begin Source File - -SOURCE=..\..\include\osg\observer_ptr -# End Source File -# Begin Source File - -SOURCE=..\..\include\osg\ref_ptr -# End Source File -# Begin Source File - -SOURCE=..\..\include\osg\io_utils -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Referenced -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\RenderInfo -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Scissor -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Sequence -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\ShadeModel -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Shader -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\ShadowVolumeOccluder -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Shape -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osg\ShapeDrawable -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\State -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\StateAttribute -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\StateSet -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Stats -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Stencil -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\StencilTwoSided -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Switch -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\TexEnv -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\TexEnvCombine -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\TexEnvFilter -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\TexGen -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\TexGenNode -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\TexMat -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Texture -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Texture1D -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Texture2D -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Texture3D -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\TextureCubeMap -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\TextureRectangle -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Timer -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Transform -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\TriangleFunctor -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\TransferFunction -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Uniform -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Vec2b -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Vec3b -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Vec4b -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Vec2s -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Vec3s -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Vec4s -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Vec4ub -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Vec2 -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Vec2d -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Vec2f -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Vec3 -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Vec3d -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Vec3f -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Vec4 -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Vec4d -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Vec4f -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\Version -# End Source File -# Begin Source File - -SOURCE=..\..\Include\Osg\VertexProgram -# End Source File -# Begin Source File - -SOURCE=..\..\include\osg\View -# End Source File -# Begin Source File - -SOURCE=..\..\include\osg\Viewport -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgDB/osgDB.dsp b/VisualStudio/osgDB/osgDB.dsp deleted file mode 100755 index 0e67c0eef..000000000 --- a/VisualStudio/osgDB/osgDB.dsp +++ /dev/null @@ -1,318 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Core osgDB" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=Core osgDB - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgDB.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgDB.mak" CFG="Core osgDB - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Core osgDB - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "Core osgDB - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "Core osgDB - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "Core osgDB - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Core osgDB - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "NDEBUG" /D "_MBCS" /D "_USRDLL" /D "OSGDB_LIBRARY" /D "WIN32" /D "_WINDOWS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgDB.dll" /implib:"../../lib/$(PlatformName)/osgDB.lib" /libpath:"../../lib/$(PlatformName)" /libpath:"../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Core osgDB - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "OSGDB_LIBRARY" /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /out:"$(OutDir)/osgDBd.dll" /pdbtype:sept /implib:"../../lib/$(PlatformName)/osgDBd.lib" /libpath:"../../lib/$(PlatformName)" /libpath:"../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "Core osgDB - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "NDEBUG" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "WIN32" /D "_WINDOWS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgDB_s.lib" - -!ELSEIF "$(CFG)" == "Core osgDB - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug_Static" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgDBd_s.lib" -# SUBTRACT LIB32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "Core osgDB - Win32 Release" -# Name "Core osgDB - Win32 Debug" -# Name "Core osgDB - Win32 Release Static" -# Name "Core osgDB - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\osgDB\Archive.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgDB\DatabasePager.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Src\osgDB\DotOsgWrapper.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Src\osgDB\DynamicLibrary.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Src\osgDB\Field.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Src\osgDB\FieldReader.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Src\osgDB\FieldReaderIterator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Src\osgDB\FileNameUtils.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Src\osgDB\FileUtils.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Src\osgDB\ImageOptions.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Src\osgDB\Input.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Src\osgDB\Output.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Src\osgDB\ReaderWriter.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Src\osgDB\ReadFile.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Src\osgDB\Registry.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgDB\SharedStateManager.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Src\osgDB\Version.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Src\osgDB\WriteFile.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter ";h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\Include\osgDB\Archive -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgDB\DatabasePager -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgDB\DotOsgWrapper -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgDB\DynamicLibrary -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgDB\Export -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgDB\Field -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgDB\FieldReader -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgDB\FieldReaderIterator -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgDB\FileNameUtils -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgDB\FileUtils -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgDB\ImageOptions -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgDB\Input -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgDB\Output -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgDB\ParameterOutput -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgDB\ReaderWriter -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgDB\ReadFile -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgDB\Registry -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgDB\SharedStateManager -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgDB\Version -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgDB\WriteFile -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgFX/osgFX.dsp b/VisualStudio/osgFX/osgFX.dsp deleted file mode 100644 index 5562ca00c..000000000 --- a/VisualStudio/osgFX/osgFX.dsp +++ /dev/null @@ -1,249 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Core osgFX" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=Core osgFX - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgFX.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgFX.mak" CFG="Core osgFX - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Core osgFX - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "Core osgFX - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "Core osgFX - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "Core osgFX - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Core osgFX - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "NDEBUG" /D "_MBCS" /D "_USRDLL" /D "OSGFX_LIBRARY" /D "_WINDOWS" /D "WIN32" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgFX.dll" /implib:"../../lib/$(PlatformName)/osgFX.lib" /libpath:"../../lib/$(PlatformName)" /libpath:"../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Core osgFX - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "_DEBUG" /D "OSGFX_LIBRARY" /D "_WINDOWS" /D "WIN32" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /out:"$(OutDir)/osgFXd.dll" /pdbtype:sept /implib:"../../lib/$(PlatformName)/osgFXd.lib" /libpath:"../../lib/$(PlatformName)" /libpath:"../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "Core osgFX - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "NDEBUG" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "WIN32" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgFX_s.lib" - -!ELSEIF "$(CFG)" == "Core osgFX - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "WIN32" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgFXd_s.lib" -# SUBTRACT LIB32 /pdb:none -!ENDIF - -# Begin Target - -# Name "Core osgFX - Win32 Release" -# Name "Core osgFX - Win32 Debug" -# Name "Core osgFX - Win32 Release Static" -# Name "Core osgFX - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\osgFX\AnisotropicLighting.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgFX\BumpMapping.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgFX\Cartoon.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgFX\Effect.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgFX\MultiTextureControl.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgFX\Registry.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgFX\Scribe.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgFX\SpecularHighlights.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgFX\Technique.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgFX\Validator.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter ";h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\osgFX\AnisotropicLighting -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgFX\BumpMapping -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgFX\Cartoon -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgFX\Effect -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgFX\Export -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgFX\MultiTextureControl -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgFX\Registry -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgFX\Scribe -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgFX\SpecularHighlights -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgFX\Technique -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgFX\Validator -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgGA/osgGA.dsp b/VisualStudio/osgGA/osgGA.dsp deleted file mode 100755 index 89496d0d0..000000000 --- a/VisualStudio/osgGA/osgGA.dsp +++ /dev/null @@ -1,295 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Core osgGA" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=Core osgGA - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgGA.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgGA.mak" CFG="Core osgGA - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Core osgGA - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "Core osgGA - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "Core osgGA - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "Core osgGA - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Core osgGA - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "NDEBUG" /D "_MBCS" /D "_USRDLL" /D "OSGGA_LIBRARY" /D "WIN32" /D "_WINDOWS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgGA.dll" /implib:"../../lib/$(PlatformName)/osgGA.lib" /libpath:"../../lib/$(PlatformName)" /libpath:"../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Core osgGA - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "OSGGA_LIBRARY" /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /out:"$(OutDir)/osgGAd.dll" /pdbtype:sept /implib:"../../lib/$(PlatformName)/osgGAd.lib" /libpath:"../../lib/$(PlatformName)" /libpath:"../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "Core osgGA - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "NDEBUG" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "WIN32" /D "_WINDOWS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgGA_s.lib" - -!ELSEIF "$(CFG)" == "Core osgGA - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgGAd_s.lib" -# SUBTRACT LIB32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "Core osgGA - Win32 Release" -# Name "Core osgGA - Win32 Debug" -# Name "Core osgGA - Win32 Release Static" -# Name "Core osgGA - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\osgGA\AnimationPathManipulator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgGA\EventQueue.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgGA\EventVisitor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgGA\DriveManipulator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgGA\FlightManipulator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgGA\GUIEventAdapter.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgGA\GUIEventHandler.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgGA\KeySwitchMatrixManipulator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgGA\MatrixManipulator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgGA\StateSetManipulator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgGA\TerrainManipulator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgGA\TrackballManipulator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgGA\NodeTrackerManipulator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgGA\UFOManipulator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgGA\Version.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter ";h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\Include\osgGA\AnimationPathManipulator -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgGA\DriveManipulator -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgGA\Export -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgGA\EventQueue -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgGA\EventVisitor -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgGA\FlightManipulator -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgGA\GUIActionAdapter -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgGA\GUIEventAdapter -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgGA\GUIEventHandler -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgGA\KeySwitchMatrixManipulator -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgGA\MatrixManipulator -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgGA\StateSetManipulator -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgGA\TerrainManipulator -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgGA\TrackballManipulator -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgGA\UFOManipulator -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgGA\NodeTrackerManipulator -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgGA\Version -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/3dc/3dc.dsp b/VisualStudio/osgPlugins/3dc/3dc.dsp deleted file mode 100644 index dfbfd2560..000000000 --- a/VisualStudio/osgPlugins/3dc/3dc.dsp +++ /dev/null @@ -1,173 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin 3dc" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin 3dc - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "3dc.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "3dc.mak" CFG="osgPlugin 3dc - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin 3dc - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin 3dc - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin 3dc - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin 3dc - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin 3dc - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_3dc.dll" /implib:"../../../lib/$(PlatformName)/osgdb_3dc.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin 3dc - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_3dcd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_3dcd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin 3dc - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_3dc_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin 3dc - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_3dcd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin 3dc - Win32 Release" -# Name "osgPlugin 3dc - Win32 Debug" -# Name "osgPlugin 3dc - Win32 Release Static" -# Name "osgPlugin 3dc - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\3dc\ReaderWriter3DC.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/ESRIShape/ESRIShape.dsp b/VisualStudio/osgPlugins/ESRIShape/ESRIShape.dsp deleted file mode 100644 index a317e72cf..000000000 --- a/VisualStudio/osgPlugins/ESRIShape/ESRIShape.dsp +++ /dev/null @@ -1,191 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin ESRI" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin ESRI - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "ESRI.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "ESRI.mak" CFG="osgPlugin ESRI - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin ESRI - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin ESRI - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin ESRI - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin ESRI - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin ESRI - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "ESRI_LIBRARY" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x414 /d "NDEBUG" -# ADD RSC /l 0x417 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgdb_shp.dll" /implib:"../../../lib/$(PlatformName)/osgdb_shp.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "osgPlugin ESRI - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "ESRI_LIBRARY" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x414 /d "_DEBUG" -# ADD RSC /l 0x417 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /out:"$(OutDir)/osgdb_shpd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_shpd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /incremental:no - -!ELSEIF "$(CFG)" == "osgPlugin ESRI - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_shp_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin ESRI - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_shpd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin ESRI - Win32 Release" -# Name "osgPlugin ESRI - Win32 Debug" -# Name "osgPlugin ESRI - Win32 Release Static" -# Name "osgPlugin ESRI - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\shp\ESRIShape.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\shp\ESRIShapeParser.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\shp\ESRIShapeReaderWriter.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\shp\ESRIShape.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\shp\ESRIShapeParser.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ESRI\license.txt -# End Source File -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgPlugins/OpenFlight/OpenFlight.dsp b/VisualStudio/osgPlugins/OpenFlight/OpenFlight.dsp deleted file mode 100644 index c86df0b37..000000000 --- a/VisualStudio/osgPlugins/OpenFlight/OpenFlight.dsp +++ /dev/null @@ -1,283 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin OpenFlight" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin OpenFlight - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "OpenFlight.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "OpenFlight.mak" CFG="osgPlugin OpenFlight - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin OpenFlight - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin OpenFlight - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin OpenFlight - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin OpenFlight - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin OpenFlight - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "FLT_LIBRARY" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x414 /d "NDEBUG" -# ADD RSC /l 0x417 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgdb_OpenFlight.dll" /implib:"../../../lib/$(PlatformName)/osgdb_OpenFlight.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "osgPlugin OpenFlight - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "FLT_LIBRARY" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x414 /d "_DEBUG" -# ADD RSC /l 0x417 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /out:"$(OutDir)/osgdb_OpenFlightd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_OpenFlightd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /incremental:no - -!ELSEIF "$(CFG)" == "osgPlugin OpenFlight - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_OpenFlight_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin OpenFlight - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_OpenFlightd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin OpenFlight - Win32 Release" -# Name "osgPlugin OpenFlight - Win32 Debug" -# Name "osgPlugin OpenFlight - Win32 Release Static" -# Name "osgPlugin OpenFlight - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\AncillaryRecords.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\AttrData.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\ControlRecords.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\DataInputStream.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\Document.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\GeometryRecords.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\LightPointRecords.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\PaletteRecords.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\Pools.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\PrimaryRecords.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\ReaderWriterATTR.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\ReaderWriterFLT.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\Record.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\RecordInputStream.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\Registry.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\ReservedRecords.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\RoadRecords.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\Vertex.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\VertexRecords.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\AttrData.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\DataInputStream.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\Document.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\opcodes.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\Pools.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\Record.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\RecordInputStream.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\Registry.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\types.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\OpenFlight\Vertex.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgPlugins/ac3d/ac3d.dsp b/VisualStudio/osgPlugins/ac3d/ac3d.dsp deleted file mode 100644 index cee2fbc8d..000000000 --- a/VisualStudio/osgPlugins/ac3d/ac3d.dsp +++ /dev/null @@ -1,189 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin ac3d" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin ac3d - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "ac3d.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "ac3d.mak" CFG="osgPlugin ac3d - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin ac3d - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin ac3d - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin ac3d - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin ac3d - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin ac3d - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_ac.dll" /implib:"../../../lib/$(PlatformName)/osgdb_ac.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin ac3d - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_acd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_acd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin ac3d - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_ac_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin ac3d - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_acd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin ac3d - Win32 Release" -# Name "osgPlugin ac3d - Win32 Debug" -# Name "osgPlugin ac3d - Win32 Release Static" -# Name "osgPlugin ac3d - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ac\ac3d.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ac\Exception.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ac\Geode.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ac\Exception.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ac\Geode.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/bmp/bmp.dsp b/VisualStudio/osgPlugins/bmp/bmp.dsp deleted file mode 100644 index 88f05ae0f..000000000 --- a/VisualStudio/osgPlugins/bmp/bmp.dsp +++ /dev/null @@ -1,173 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin bmp" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin bmp - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "bmp.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "bmp.mak" CFG="osgPlugin bmp - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin bmp - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin bmp - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin bmp - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin bmp - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin bmp - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_bmp.dll" /implib:"../../../lib/$(PlatformName)/osgdb_bmp.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin bmp - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_bmpd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_bmpd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin bmp - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_bmp_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin bmp - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_bmpd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin bmp - Win32 Release" -# Name "osgPlugin bmp - Win32 Debug" -# Name "osgPlugin bmp - Win32 Release Static" -# Name "osgPlugin bmp - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\bmp\ReaderWriterBMP.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/bsp/bsp.dsp b/VisualStudio/osgPlugins/bsp/bsp.dsp deleted file mode 100644 index 9239c5b18..000000000 --- a/VisualStudio/osgPlugins/bsp/bsp.dsp +++ /dev/null @@ -1,199 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin bsp" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin bsp - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "bsp.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "bsp.mak" CFG="osgPlugin bsp - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin bsp - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin bsp - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin bsp - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin bsp - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin bsp - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "bsp_LIBRARY" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x414 /d "NDEBUG" -# ADD RSC /l 0x417 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgdb_bsp.dll" /implib:"../../../lib/$(PlatformName)/osgdb_bsp.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "osgPlugin bsp - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "bsp_LIBRARY" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x414 /d "_DEBUG" -# ADD RSC /l 0x417 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /out:"$(OutDir)/osgdb_bspd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_bspd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /incremental:no - -!ELSEIF "$(CFG)" == "osgPlugin bsp - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_bsp_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin bsp - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_bspd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin bsp - Win32 Release" -# Name "osgPlugin bsp - Win32 Debug" -# Name "osgPlugin bsp - Win32 Release Static" -# Name "osgPlugin bsp - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\bsp\BITSET.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\bsp\BSPLoad.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\bsp\ReaderWriterQ3BSP.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\bsp\ReaderWriterQ3BSP.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\bsp\BSPLoad.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\bsp\BITSET.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\bsp\scene.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\bsp\license.txt -# End Source File -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgPlugins/dae/dae.dsp b/VisualStudio/osgPlugins/dae/dae.dsp deleted file mode 100644 index edd13605f..000000000 --- a/VisualStudio/osgPlugins/dae/dae.dsp +++ /dev/null @@ -1,214 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin COLLADA dae" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin COLLADA dae - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "dot_dae.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "dot_dae.mak" CFG="osgPlugin COLLADA dae - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin COLLADA dae - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin COLLADA dae - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin COLLADA dae - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin COLLADA dae - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin COLLADA dae - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /I "../../../../3rdParty/include/collada-dom" /I "../../../../3rdParty/include/collada-dom/1.4" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 /pdbtype:sept -# ADD LINK32 libcollada_dom.lib libcollada_dae.lib libcollada_STLDatabase.lib libcollada_LIBXMLPlugin.lib libcollada_stdErrPlugin.lib libxml2_a.lib iconv_a.lib zlib.lib wsock32.lib OpenThreadsWin32.lib /nologo /dll /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_dae.dll" /implib:"../../../lib/$(PlatformName)/osgdb_dae.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin COLLADA dae - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /I "../../../../3rdParty/include/collada-dom" /I "../../../../3rdParty/include/collada-dom/1.4" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 libcollada_dom.lib libcollada_dae.lib libcollada_STLDatabase.lib libcollada_LIBXMLPlugin.lib libcollada_stdErrPlugin.lib libxml2_a.lib iconv_a.lib zlib.lib wsock32.lib OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_daeD.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_daeD.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin COLLADA dae - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_dae_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin COLLADA dae - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_daeD_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin COLLADA dae - Win32 Release" -# Name "osgPlugin COLLADA dae - Win32 Debug" -# Name "osgPlugin COLLADA dae - Win32 Release Static" -# Name "osgPlugin COLLADA dae - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\dae\daeReader.cpp -# End Source File -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\dae\daeRGeometry.cpp -# End Source File -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\dae\daeRMaterials.cpp -# End Source File -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\dae\daeRSceneObjects.cpp -# End Source File -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\dae\daeRTransforms.cpp -# End Source File -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\dae\daeWGeometry.cpp -# End Source File -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\dae\daeWMaterials.cpp -# End Source File -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\dae\daeWSceneObjects.cpp -# End Source File -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\dae\daeWTransforms.cpp -# End Source File -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\dae\daeWriter.cpp -# End Source File -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\dae\domSourceReader.cpp -# End Source File -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\dae\ReaderWriterDAE.cpp -# End Source File -# End Group - -# Begin Group "Header Files" -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\dae\daeReader.h -# End Source File -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\dae\daeWriter.h -# End Source File -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\dae\domSourceReader.h -# End Source File -# End Group - -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgPlugins/dds/dds.dsp b/VisualStudio/osgPlugins/dds/dds.dsp deleted file mode 100644 index 5f2fde3a2..000000000 --- a/VisualStudio/osgPlugins/dds/dds.dsp +++ /dev/null @@ -1,173 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin dds" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin dds - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "dds.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "dds.mak" CFG="osgPlugin dds - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin dds - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin dds - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin dds - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin dds - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin dds - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_dds.dll" /implib:"../../../lib/$(PlatformName)/osgdb_dds.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin dds - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_ddsd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_ddsd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin dds - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_dds_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin dds - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_ddsd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin dds - Win32 Release" -# Name "osgPlugin dds - Win32 Debug" -# Name "osgPlugin dds - Win32 Release Static" -# Name "osgPlugin dds - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dds\ReaderWriterDDS.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/directx/directx.dsp b/VisualStudio/osgPlugins/directx/directx.dsp deleted file mode 100644 index 320afaf08..000000000 --- a/VisualStudio/osgPlugins/directx/directx.dsp +++ /dev/null @@ -1,197 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin directx" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin directx - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "directx.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "directx.mak" CFG="osgPlugin directx - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin directx - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin directx - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin directx - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin directx - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin directx - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_x.dll" /implib:"../../../lib/$(PlatformName)/osgdb_x.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin directx - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_xd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_xd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin directx - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_x_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin directx - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_xd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin directx - Win32 Release" -# Name "osgPlugin directx - Win32 Debug" -# Name "osgPlugin directx - Win32 Release Static" -# Name "osgPlugin directx - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\x\directx.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\x\types.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\x\mesh.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\x\ReaderWriterDirectX.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\x\directx.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\x\types.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\x\mesh.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/dw/dw.dsp b/VisualStudio/osgPlugins/dw/dw.dsp deleted file mode 100644 index 2b4ac43d1..000000000 --- a/VisualStudio/osgPlugins/dw/dw.dsp +++ /dev/null @@ -1,177 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin dw" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin dw - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "dw.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "dw.mak" CFG="osgPlugin dw - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin dw - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin dw - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin dw - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin dw - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin dw - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib glu32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_dw.dll" /implib:"../../../lib/$(PlatformName)/osgdb_dw.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin dw - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_dwd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_dwd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "osgPlugin dw - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_dw_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin dw - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_dwd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin dw - Win32 Release" -# Name "osgPlugin dw - Win32 Debug" -# Name "osgPlugin dw - Win32 Release Static" -# Name "osgPlugin dw - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dw\ReaderWriterDW.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "" -# End Group -# End Target -# Begin Group "Header Files No. 1" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "" -# End Group -# End Project - diff --git a/VisualStudio/osgPlugins/dxf/dxf.dsp b/VisualStudio/osgPlugins/dxf/dxf.dsp deleted file mode 100644 index d94e67c5b..000000000 --- a/VisualStudio/osgPlugins/dxf/dxf.dsp +++ /dev/null @@ -1,251 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin dxf" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin dxf - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "dxf.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "dxf.mak" CFG="osgPlugin dxf - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin dxf - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin dxf - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin dxf - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin dxf - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin dxf - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "DXF_LIBRARY" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x414 /d "NDEBUG" -# ADD RSC /l 0x417 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgdb_dxf.dll" /implib:"../../../lib/$(PlatformName)/osgdb_dxf.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "osgPlugin dxf - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "DXF_LIBRARY" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x414 /d "_DEBUG" -# ADD RSC /l 0x417 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /out:"$(OutDir)/osgdb_dxfd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_dxfd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /incremental:no - -!ELSEIF "$(CFG)" == "osgPlugin dxf - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_dxf_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin dxf - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_dxfd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin dxf - Win32 Release" -# Name "osgPlugin dxf - Win32 Debug" -# Name "osgPlugin dxf - Win32 Release Static" -# Name "osgPlugin dxf - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\aci.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\dxfBlock.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\dxfEntity.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\dxfFile.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\dxfReader.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\dxfSection.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\dxfTable.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\ReaderWriterDXF.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\scene.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\aci.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\codeValue.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\dxfBlock.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\dxfDataTypes.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\dxfEntity.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\dxfFile.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\dxfReader.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\dxfSectionBase.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\dxfSection.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\dxfTable.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\scene.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\dxf\license.txt -# End Source File -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgPlugins/freetype/freetype.dsp b/VisualStudio/osgPlugins/freetype/freetype.dsp deleted file mode 100755 index c44a535ea..000000000 --- a/VisualStudio/osgPlugins/freetype/freetype.dsp +++ /dev/null @@ -1,188 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin freetype" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin freetype - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "freetype.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "freetype.mak" CFG="osgPlugin freetype - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin freetype - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin freetype - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin freetype - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin freetype - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin freetype - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib freetype219.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_freetype.dll" /implib:"../../../lib/$(PlatformName)/osgdb_freetype.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin freetype - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib freetype219_D.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_freetyped.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_freetyped.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin freetype - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_freetype_s.lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin freetype - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_freetyped_s.lib" -# SUBTRACT LINK32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin freetype - Win32 Release" -# Name "osgPlugin freetype - Win32 Debug" -# Name "osgPlugin freetype - Win32 Release Static" -# Name "osgPlugin freetype - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\freetype\FreeTypeFont.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\freetype\FreeTypeLibrary.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\freetype\ReaderWriterFreeType.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\freetype\FreeTypeFont.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\freetype\FreeTypeLibrary.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;freetype;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgPlugins/geo/geo.dsp b/VisualStudio/osgPlugins/geo/geo.dsp deleted file mode 100644 index 2d2f1820c..000000000 --- a/VisualStudio/osgPlugins/geo/geo.dsp +++ /dev/null @@ -1,225 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin geo" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin geo - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "geo.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "geo.mak" CFG="osgPlugin geo - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin geo - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin geo - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin geo - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin geo - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin geo - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_geo.dll" /implib:"../../../lib/$(PlatformName)/osgdb_geo.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin geo - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_geod.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_geod.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin geo - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_geo_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin geo - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_geod_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin geo - Win32 Release" -# Name "osgPlugin geo - Win32 Debug" -# Name "osgPlugin geo - Win32 Release Static" -# Name "osgPlugin geo - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\geo\ClipRegion.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\geo\geoActions.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\geo\ReaderWriterGEO.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\geo\ClipRegion.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\geo\geoFormat.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\geo\geoCore.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\geo\geoTypes.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\geo\geoVersion.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\geo\geoUnits.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\geo\osgGeoAction.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\geo\osgGeoAnimation.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\geo\osgGeoNodes.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\geo\osgGeoStructs.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# Begin Source File - -SOURCE=.\osgGeoNodes.asp -# End Source File -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/gif/gif.dsp b/VisualStudio/osgPlugins/gif/gif.dsp deleted file mode 100755 index ac1754d0f..000000000 --- a/VisualStudio/osgPlugins/gif/gif.dsp +++ /dev/null @@ -1,173 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin gif" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin gif - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "gif.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "gif.mak" CFG="osgPlugin gif - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin gif - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin gif - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin gif - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin gif - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin gif - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib libungif.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_gif.dll" /implib:"../../../lib/$(PlatformName)/osgdb_gif.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin gif - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib libungifD.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_gifd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_gifd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin gif - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_gif_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin gif - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_gifd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin gif - Win32 Release" -# Name "osgPlugin gif - Win32 Debug" -# Name "osgPlugin gif - Win32 Release Static" -# Name "osgPlugin gif - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\gif\ReaderWriterGIF.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/hdr/hdr.dsp b/VisualStudio/osgPlugins/hdr/hdr.dsp deleted file mode 100644 index 425960648..000000000 --- a/VisualStudio/osgPlugins/hdr/hdr.dsp +++ /dev/null @@ -1,180 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin hdr" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin hdr - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "hdr.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "hdr.mak" CFG="osgPlugin hdr - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin hdr - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin hdr - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin hdr - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin hdr - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin hdr - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_hdr.dll" /implib:"../../../lib/$(PlatformName)/osgdb_hdr.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin hdr - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_hdrd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_hdrd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin hdr - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_hdr_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin hdr - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_hdrd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin hdr - Win32 Release" -# Name "osgPlugin hdr - Win32 Debug" -# Name "osgPlugin hdr - Win32 Release Static" -# Name "osgPlugin hdr - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\hdr\hdrloader.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\hdr\ReaderWriterHDR.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\hdr\hdrloader.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgPlugins/ive/ive.dsp b/VisualStudio/osgPlugins/ive/ive.dsp deleted file mode 100755 index 06c00d8e0..000000000 --- a/VisualStudio/osgPlugins/ive/ive.dsp +++ /dev/null @@ -1,905 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin ive" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin ive - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "ive.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "ive.mak" CFG="osgPlugin ive - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin ive - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin ive - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin ive - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin ive - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin ive - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_ive.dll" /implib:"../../../lib/$(PlatformName)/osgdb_ive.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin ive - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_ived.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_ived.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin ive - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_ive_s.lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin ive - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_ived_s.lib" -# SUBTRACT LINK32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin ive - Win32 Release" -# Name "osgPlugin ive - Win32 Debug" -# Name "osgPlugin ive - Win32 Release Static" -# Name "osgPlugin ive - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\AlphaFunc.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\AnimationPath.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\AnimationPathCallback.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\AutoTransform.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\AzimElevationSector.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\AzimSector.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Billboard.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\BlendColor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\BlendFunc.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\BlinkSequence.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Camera.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\CameraView.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ClipPlane.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ClipNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ClusterCullingCallback.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ConeSector.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ConvexPlanarOccluder.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ConvexPlanarPolygon.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\CoordinateSystemNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ColorMask.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\CullFace.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\DataInputStream.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\DataOutputStream.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Depth.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\DirectionalSector.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\DOFTransform.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Drawable.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\DrawArrayLengths.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\DrawArrays.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\DrawElementsUByte.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\DrawElementsUInt.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\DrawElementsUShort.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ElevationSector.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\EllipsoidModel.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Exception.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\FragmentProgram.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\FrontFace.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Geode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Geometry.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Group.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Image.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Impostor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Light.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\LightModel.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\LightPoint.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\LightPointNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\LightSource.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\LineWidth.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\LOD.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Material.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\MatrixTransform.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\MultiSwitch.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\MultiTextureControl.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Node.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Object.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\OccluderNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\PagedLOD.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Point.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\PointSprite.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\PolygonMode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\PolygonOffset.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\PositionAttitudeTransform.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\PrimitiveSet.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ProxyNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ReaderWriterIVE.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Scissor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Sequence.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ShadeModel.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Shape.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ShapeDrawable.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\StateSet.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Switch.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Stencil.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\TexEnv.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\TexEnvCombine.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\TexGen.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\TexGenNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\TexMat.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Text.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Program.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Shader.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Uniform.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Texture.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Texture1D.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Texture2D.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Texture3D.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\TextureCubeMap.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\TextureRectangle.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Transform.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\VertexProgram.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Viewport.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\VisibilityGroup.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\AlphaFunc.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\AnimationPath.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\AnimationPathCallback.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\AutoTransform.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\AzimElevationSector.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\AzimSector.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Billboard.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\BlendColor.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\BlendFunc.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\BlinkSequence.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Camera.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\CameraView.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ClipPlane.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ClipNode.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ClusterCullingCallback.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ConeSector.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ConvexPlanarOccluder.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ConvexPlanarPolygon.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\CoordinateSystemNode.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\CullFace.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\DataInputStream.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\DataOutputStream.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\DataTypeSize.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Depth.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\DirectionalSector.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\DOFTransform.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Drawable.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\DrawArrayLengths.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\DrawArrays.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\DrawElementsUByte.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\DrawElementsUInt.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\DrawElementsUShort.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ElevationSector.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\EllipsoidModel.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Exception.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\FragmentProgram.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\FrontFace.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Geode.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Geometry.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Group.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Image.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Impostor.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Light.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\LightModel.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\LightPoint.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\LightPointNode.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\LightSource.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\LineWidth.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\LOD.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Material.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\MatrixTransform.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\MultiSwitch.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\MultiTextureControl.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Node.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Object.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\OccluderNode.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\PagedLOD.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Point.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\PointSprite.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\PolygonMode.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\PolygonOffset.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\PositionAttitudeTransform.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\PrimitiveSet.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ProxyNode.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ReadWrite.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Sequence.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ShadeModel.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Shape.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\ShapeDrawable.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\StateSet.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Stencil.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Switch.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\TexEnv.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\TexEnvCombine.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\TexGen.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\TexGenNode.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\TexMat.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Text.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Program.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Scissor.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Shader.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Uniform.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Texture.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Texture1D.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Texture2D.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Texture3D.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\TextureCubeMap.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\TextureRectangle.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Transform.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\VertexProgram.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\Viewport.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\ive\VisibilityGroup.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/jp2/jp2.dsp b/VisualStudio/osgPlugins/jp2/jp2.dsp deleted file mode 100644 index f0f7e236d..000000000 --- a/VisualStudio/osgPlugins/jp2/jp2.dsp +++ /dev/null @@ -1,109 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin jp2" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=osgPlugin jp2 - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "jp2.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "jp2.mak" CFG="osgPlugin jp2 - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin jp2 - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin jp2 - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin jp2 - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "JAS_WIN_MSVC_BUILD" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 osg.lib osgDB.lib libjasper.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"MSVCRT" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_jp2.dll" /implib:"../../../lib/$(PlatformName)/osgdb_jp2.lib" /libpath:"../../../lib/$(PlatformName)" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin jp2 - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "JAS_WIN_MSVC_BUILD" /D "_CRT_SECURE_NO_DEPRECATE" /FR /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 osgd.lib osgDBd.lib libjasperd.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"MSVCRTD" /out:"$(OutDir)/osgdb_jp2d.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_jp2d.lib" /libpath:"../../../lib/$(PlatformName)" -# SUBTRACT LINK32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin jp2 - Win32 Release" -# Name "osgPlugin jp2 - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\jp2\ReaderWriterJP2.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgPlugins/jpeg/jpeg.dsp b/VisualStudio/osgPlugins/jpeg/jpeg.dsp deleted file mode 100755 index e7bca4442..000000000 --- a/VisualStudio/osgPlugins/jpeg/jpeg.dsp +++ /dev/null @@ -1,172 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin jpeg" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin jpeg - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "jpeg.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "jpeg.mak" CFG="osgPlugin jpeg - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin jpeg - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin jpeg - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin jpeg - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin jpeg - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin jpeg - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib libjpeg.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_jpeg.dll" /implib:"../../../lib/$(PlatformName)/osgdb_jpeg.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin jpeg - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib libjpegD.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_jpegd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_jpegd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin jpeg - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_jpeg_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin jpeg - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_jpegd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin jpeg - Win32 Release" -# Name "osgPlugin jpeg - Win32 Debug" -# Name "osgPlugin jpeg - Win32 Release Static" -# Name "osgPlugin jpeg - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\jpeg\ReaderWriterJPEG.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgPlugins/lib3ds/lib3ds.dsp b/VisualStudio/osgPlugins/lib3ds/lib3ds.dsp deleted file mode 100644 index 056a401c9..000000000 --- a/VisualStudio/osgPlugins/lib3ds/lib3ds.dsp +++ /dev/null @@ -1,332 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin 3ds" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin 3ds - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "lib3ds.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "lib3ds.mak" CFG="osgPlugin 3ds - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin 3ds - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin 3ds - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin 3ds - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin 3ds - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin 3ds - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_3ds.dll" /implib:"../../../lib/$(PlatformName)/osgdb_3ds.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin 3ds - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_3dsd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_3dsd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin 3ds - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_3ds_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin 3ds - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_3dsd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin 3ds - Win32 Release" -# Name "osgPlugin 3ds - Win32 Debug" -# Name "osgPlugin 3ds - Win32 Release Static" -# Name "osgPlugin 3ds - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\atmosphere.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\background.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Camera.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Chunk.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Ease.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\File.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Lib3ds_float.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Light.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Material.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Matrix.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Mesh.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Node.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Quat.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\ReaderWriter3DS.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\readwrite.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Shadow.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Tcb.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Tracks.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Vector.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Viewport.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\atmosphere.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\background.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Camera.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Chunk.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\chunktable.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Ease.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\File.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Lib3ds_float.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Light.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Material.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Matrix.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Mesh.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Node.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Quat.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\readwrite.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Shadow.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Tcb.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Tracks.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Types.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Vector.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\3ds\Viewport.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgPlugins/logo/logo.dsp b/VisualStudio/osgPlugins/logo/logo.dsp deleted file mode 100644 index 472135bd3..000000000 --- a/VisualStudio/osgPlugins/logo/logo.dsp +++ /dev/null @@ -1,173 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin logo" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin logo - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "logo.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "logo.mak" CFG="osgPlugin logo - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin logo - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin logo - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin logo - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin logo - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin logo - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_logo.dll" /implib:"../../../lib/$(PlatformName)/osgdb_logo.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin logo - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_logod.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_logod.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin logo - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_logo_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin logo - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_logod_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin logo - Win32 Release" -# Name "osgPlugin logo - Win32 Debug" -# Name "osgPlugin logo - Win32 Release Static" -# Name "osgPlugin logo - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\logo\ReaderWriterLOGO.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/lwo/lwo.dsp b/VisualStudio/osgPlugins/lwo/lwo.dsp deleted file mode 100644 index dfcf230d3..000000000 --- a/VisualStudio/osgPlugins/lwo/lwo.dsp +++ /dev/null @@ -1,296 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin lwo" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin lwo - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "lwo.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "lwo.mak" CFG="osgPlugin lwo - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin lwo - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin lwo - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin lwo - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin lwo - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin lwo - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib glu32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_lwo.dll" /implib:"../../../lib/$(PlatformName)/osgdb_lwo.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin lwo - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_lwod.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_lwod.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "osgPlugin lwo - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_lwo_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin lwo - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_lwod_s.lib" -# SUBTRACT LIB32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "osgPlugin lwo - Win32 Release" -# Name "osgPlugin lwo - Win32 Debug" -# Name "osgPlugin lwo - Win32 Release Static" -# Name "osgPlugin lwo - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\lwo\Block.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\lwo\Clip.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\lwo\Converter.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\lwo\Object.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\lwo\old_lw.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\lwo\old_Lwo2.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\lwo\old_Lwo2Layer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\lwo\Polygon.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\lwo\ReaderWriterLWO.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\lwo\Surface.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\lwo\Tessellator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\lwo\Unit.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\lwo\VertexMap.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\lwo\Block.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\lwo\Clip.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\lwo\Converter.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\lwo\iffparser.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\lwo\Layer.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\lwo\lwo2chunks.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\lwo\lwo2parser.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\lwo\lwo2read.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\lwo\lwo2types.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\lwo\Object.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\lwo\old_lw.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\lwo\old_Lwo2.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\lwo\old_Lwo2Layer.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\lwo\Polygon.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\lwo\Surface.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\lwo\Tessellator.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\lwo\Unit.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\lwo\VertexMap.h -# End Source File -# End Group -# End Target -# Begin Group "Header Files No. 1" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "" -# End Group -# End Project diff --git a/VisualStudio/osgPlugins/lws/lws.dsp b/VisualStudio/osgPlugins/lws/lws.dsp deleted file mode 100644 index 27058886a..000000000 --- a/VisualStudio/osgPlugins/lws/lws.dsp +++ /dev/null @@ -1,184 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin lws" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin lws - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "lws.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "lws.mak" CFG="osgPlugin lws - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin lws - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin lws - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin lws - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin lws - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin lws - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib glu32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_lws.dll" /implib:"../../../lib/$(PlatformName)/osgdb_lws.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin lws - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib glu32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_lwsd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_lwsd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "osgPlugin lws - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_lws_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin lws - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_lwsd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin lws - Win32 Release" -# Name "osgPlugin lws - Win32 Debug" -# Name "osgPlugin lws - Win32 Release Static" -# Name "osgPlugin lws - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\lws\ReaderWriterLWS.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\lws\SceneLoader.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\lws\SceneLoader.h -# End Source File -# End Group -# End Target -# Begin Group "Header Files No. 1" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "" -# End Group -# End Project diff --git a/VisualStudio/osgPlugins/md2/md2.dsp b/VisualStudio/osgPlugins/md2/md2.dsp deleted file mode 100644 index f7616b455..000000000 --- a/VisualStudio/osgPlugins/md2/md2.dsp +++ /dev/null @@ -1,177 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin md2" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin md2 - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "md2.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "md2.mak" CFG="osgPlugin md2 - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin md2 - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin md2 - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin md2 - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin md2 - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin md2 - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_md2.dll" /implib:"../../../lib/$(PlatformName)/osgdb_md2.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin md2 - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_md2d.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_md2d.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin md2 - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_md2_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin md2 - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_md2d_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin md2 - Win32 Release" -# Name "osgPlugin md2 - Win32 Debug" -# Name "osgPlugin md2 - Win32 Release Static" -# Name "osgPlugin md2 - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\md2\ReaderWriterMD2.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\md2\anorms.h -# End Source File -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/net/net.dsp b/VisualStudio/osgPlugins/net/net.dsp deleted file mode 100644 index 6706a94d1..000000000 --- a/VisualStudio/osgPlugins/net/net.dsp +++ /dev/null @@ -1,186 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin net" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin net - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "net.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "net.mak" CFG="osgPlugin net - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin net - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin net - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin net - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin net - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin net - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "OSGPLUGINNET_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib wsock32.lib /nologo /dll /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgdb_net.dll" /implib:"../../../lib/$(PlatformName)/osgdb_net.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "osgPlugin net - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "osgPlugin_net___Win32_Debug" -# PROP BASE Intermediate_Dir "osgPlugin_net___Win32_Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "OSGPLUGINNET_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib wsock32.lib /nologo /dll /debug /machine:I386 /out:"$(OutDir)/osgdb_netd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_netd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "osgPlugin net - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_net_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin net - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_netd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin net - Win32 Release" -# Name "osgPlugin net - Win32 Debug" -# Name "osgPlugin net - Win32 Release Static" -# Name "osgPlugin net - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\net\ReaderWriterNET.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\net\sockinet.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\net\sockstream.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\net\sockinet.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\net\sockstream.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgPlugins/normals/normals.dsp b/VisualStudio/osgPlugins/normals/normals.dsp deleted file mode 100644 index bf04c9ae9..000000000 --- a/VisualStudio/osgPlugins/normals/normals.dsp +++ /dev/null @@ -1,180 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin normals" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin normals - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "normals.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "normals.mak" CFG="osgPlugin normals - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin normals - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin normals - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin normals - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin normals - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin normals - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_normals.dll" /implib:"../../../lib/$(PlatformName)/osgdb_normals.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin normals - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_normalsd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_normalsd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin normals - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_normals_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin normals - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_normalsd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin normals - Win32 Release" -# Name "osgPlugin normals - Win32 Debug" -# Name "osgPlugin normals - Win32 Release Static" -# Name "osgPlugin normals - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\normals\Normals.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\normals\ReaderWriterNormals.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\normals\Normals.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgPlugins/obj/obj.dsp b/VisualStudio/osgPlugins/obj/obj.dsp deleted file mode 100644 index b5111ec08..000000000 --- a/VisualStudio/osgPlugins/obj/obj.dsp +++ /dev/null @@ -1,181 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin obj" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin obj - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "obj.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "obj.mak" CFG="osgPlugin obj - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin obj - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin obj - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin obj - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin obj - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin obj - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_obj.dll" /implib:"../../../lib/$(PlatformName)/osgdb_obj.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin obj - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_objd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_objd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin obj - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_obj_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin obj - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_objd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin obj - Win32 Release" -# Name "osgPlugin obj - Win32 Debug" -# Name "osgPlugin obj - Win32 Release Static" -# Name "osgPlugin obj - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\obj\obj.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\obj\ReaderWriterOBJ.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\Src\osgPlugins\obj\obj.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/osg/dot_osg.dsp b/VisualStudio/osgPlugins/osg/dot_osg.dsp deleted file mode 100755 index 39aec9b35..000000000 --- a/VisualStudio/osgPlugins/osg/dot_osg.dsp +++ /dev/null @@ -1,473 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin osg" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin osg - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "dot_osg.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "dot_osg.mak" CFG="osgPlugin osg - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin osg - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin osg - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin osg - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin osg - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin osg - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_osg.dll" /implib:"../../../lib/$(PlatformName)/osgdb_osg.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osg - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_osgd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_osgd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osg - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_osg_s.lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osg - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_osgd_s.lib" -# SUBTRACT LINK32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin osg - Win32 Release" -# Name "osgPlugin osg - Win32 Debug" -# Name "osgPlugin osg - Win32 Release Static" -# Name "osgPlugin osg - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\AlphaFunc.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\AnimationPath.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\AutoTransform.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Billboard.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\BlendColor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\BlendFunc.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Camera.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\CameraView.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\ClearNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\ClipNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\ClipPlane.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\ClusterCullingCallback.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\ColorMask.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\ColorMatrix.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\ConvexPlanarOccluder.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\CoordinateSystemNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\CullFace.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Depth.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Drawable.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\EllipsoidModel.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Fog.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\FragmentProgram.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\FrontFace.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Geode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Geometry.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Group.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Image.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Light.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\LightModel.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\LightSource.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\LineStipple.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\LineWidth.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\LOD.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Material.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Matrix.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\MatrixTransform.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Node.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\NodeCallback.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Object.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\OccluderNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\PagedLOD.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Point.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\PointSprite.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\PolygonMode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\PolygonOffset.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\PositionAttitudeTransform.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Program.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Projection.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\ProxyNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\ReaderWriterOSG.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Scissor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Sequence.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\ShadeModel.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Shader.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Shape.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\ShapeDrawable.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\StateSet.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Stencil.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Switch.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\TessellationHints.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\TexEnv.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\TexEnvCombine.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\TexEnvFilter.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\TexGen.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\TexGenNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\TexMat.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Texture.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Texture1D.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Texture2D.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Texture3D.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\TextureCubeMap.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\TextureRectangle.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Transform.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Uniform.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\VertexProgram.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osg\Viewport.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/osgFX/dot_osgFX.dsp b/VisualStudio/osgPlugins/osgFX/dot_osgFX.dsp deleted file mode 100644 index ec5592754..000000000 --- a/VisualStudio/osgPlugins/osgFX/dot_osgFX.dsp +++ /dev/null @@ -1,198 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin osgFX" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin osgFX - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "dot_osgFX.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "dot_osgFX.mak" CFG="osgPlugin osgFX - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin osgFX - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin osgFX - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin osgFX - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin osgFX - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin osgFX - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_osgFX.dll" /implib:"../../../lib/$(PlatformName)/osgdb_osgFX.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgFX - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_osgFXd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_osgFXd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgFX - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_osgFX_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgFX - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_osgFXd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin osgFX - Win32 Release" -# Name "osgPlugin osgFX - Win32 Debug" -# Name "osgPlugin osgFX - Win32 Release Static" -# Name "osgPlugin osgFX - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgFX\IO_AnisotropicLighting.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgFX\IO_BumpMapping.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgFX\IO_Cartoon.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgFX\IO_Effect.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgFX\IO_MultiTextureControl.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgFX\IO_Scribe.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgFX\IO_SpecularHighlights.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/osgParticle/dot_osgParticle.dsp b/VisualStudio/osgPlugins/osgParticle/dot_osgParticle.dsp deleted file mode 100644 index 1ac7a1048..000000000 --- a/VisualStudio/osgPlugins/osgParticle/dot_osgParticle.dsp +++ /dev/null @@ -1,289 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin osgParticle" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin osgParticle - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "dot_osgParticle.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "dot_osgParticle.mak" CFG="osgPlugin osgParticle - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin osgParticle - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin osgParticle - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin osgParticle - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin osgParticle - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin osgParticle - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_osgParticle.dll" /implib:"../../../lib/$(PlatformName)/osgdb_osgParticle.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgParticle - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_osgParticled.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_osgParticled.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgParticle - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_osgParticle_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgParticle - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_osgParticled_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin osgParticle - Win32 Release" -# Name "osgPlugin osgParticle - Win32 Debug" -# Name "osgPlugin osgParticle - Win32 Release Static" -# Name "osgPlugin osgParticle - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_AccelOperator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_AngularAccelOperator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_BoxPlacer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_CenteredPlacer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_ConnectedParticleSystem.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_ConstantRateCounter.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_Emitter.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_FluidFrictionOperator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_ForceOperator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_LinearInterpolator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_ModularEmitter.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_ModularProgram.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_MultiSegmentPlacer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_Particle.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_ParticleEffect.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_ExplosionEffect.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_ExplosionDebrisEffect.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_SmokeEffect.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_SmokeTrailEffect.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_FireEffect.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_ParticleProcessor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_ParticleSystem.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_ParticleSystemUpdater.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_PointPlacer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_Program.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_RadialShooter.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_RandomRateCounter.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_SectorPlacer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_SegmentPlacer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgParticle\IO_VariableRateCounter.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/osgShadow/dot_osgShadow.dsp b/VisualStudio/osgPlugins/osgShadow/dot_osgShadow.dsp deleted file mode 100644 index 566640feb..000000000 --- a/VisualStudio/osgPlugins/osgShadow/dot_osgShadow.dsp +++ /dev/null @@ -1,198 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin osgShadow" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin osgShadow - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "dot_osgShadow.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "dot_osgShadow.mak" CFG="osgPlugin osgShadow - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin osgShadow - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin osgShadow - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin osgShadow - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin osgShadow - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin osgShadow - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_osgShadow.dll" /implib:"../../../lib/$(PlatformName)/osgdb_osgShadow.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgShadow - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_osgShadowd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_osgShadowd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgShadow - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_osgShadow_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgShadow - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_osgShadowd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin osgShadow - Win32 Release" -# Name "osgPlugin osgShadow - Win32 Debug" -# Name "osgPlugin osgShadow - Win32 Release Static" -# Name "osgPlugin osgShadow - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgShadow\ParallelSplitShadowMap.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgShadow\ShadowedScene.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgShadow\ShadowMap.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgShadow\ShadowTechnique.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgShadow\ShadowTexture.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgShadow\ShadowVolume.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgShadow\ReaderWriterOsgShadow.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/osgSim/dot_osgSim.dsp b/VisualStudio/osgPlugins/osgSim/dot_osgSim.dsp deleted file mode 100644 index 4c2115f1e..000000000 --- a/VisualStudio/osgPlugins/osgSim/dot_osgSim.dsp +++ /dev/null @@ -1,201 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin osgSim" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin osgSim - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "dot_osgSim.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "dot_osgSim.mak" CFG="osgPlugin osgSim - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin osgSim - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin osgSim - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin osgSim - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin osgSim - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin osgSim - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_osgSim.dll" /implib:"../../../lib/$(PlatformName)/osgdb_osgSim.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgSim - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_osgSimd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_osgSimd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgSim - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_osgSim_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgSim - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_osgSimd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin osgSim - Win32 Release" -# Name "osgPlugin osgSim - Win32 Debug" -# Name "osgPlugin osgSim - Win32 Release Static" -# Name "osgPlugin osgSim - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgSim\IO_BlinkSequence.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgSim\IO_DOFTransform.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgSim\IO_Impostor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgSim\IO_LightPoint.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgSim\IO_LightPointNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgSim\IO_MultiSwitch.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgSim\IO_Sector.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgSim\IO_VisibilityGroup.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/osgText/dot_osgText.dsp b/VisualStudio/osgPlugins/osgText/dot_osgText.dsp deleted file mode 100644 index b4dc084cb..000000000 --- a/VisualStudio/osgPlugins/osgText/dot_osgText.dsp +++ /dev/null @@ -1,173 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin osgText" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin osgText - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "dot_osgText.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "dot_osgText.mak" CFG="osgPlugin osgText - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin osgText - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin osgText - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin osgText - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin osgText - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin osgText - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_osgText.dll" /implib:"../../../lib/$(PlatformName)/osgdb_osgText.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgText - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_osgTextd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_osgTextd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgText - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_osgText_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgText - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_osgTextd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin osgText - Win32 Release" -# Name "osgPlugin osgText - Win32 Debug" -# Name "osgPlugin osgText - Win32 Release Static" -# Name "osgPlugin osgText - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgText\IO_Text.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/osgViewer/dot_osgViewer.dsp b/VisualStudio/osgPlugins/osgViewer/dot_osgViewer.dsp deleted file mode 100644 index b9a9c9fc3..000000000 --- a/VisualStudio/osgPlugins/osgViewer/dot_osgViewer.dsp +++ /dev/null @@ -1,178 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin osgViewer" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin osgViewer - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "dot_osgViewer.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "dot_osgViewer.mak" CFG="osgPlugin osgViewer - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin osgViewer - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin osgViewer - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin osgViewer - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin osgViewer - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin osgViewer - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_osgViewer.dll" /implib:"../../../lib/$(PlatformName)/osgdb_osgViewer.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgViewer - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_osgViewerd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_osgViewerd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgViewer - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_osgViewer_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgViewer - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_osgViewerd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin osgViewer - Win32 Release" -# Name "osgPlugin osgViewer - Win32 Debug" -# Name "osgPlugin osgViewer - Win32 Release Static" -# Name "osgPlugin osgViewer - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgViewer\View.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgViewer\ReaderWriterOsgViewer.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/osga/osga.dsp b/VisualStudio/osgPlugins/osga/osga.dsp deleted file mode 100644 index fcab0e338..000000000 --- a/VisualStudio/osgPlugins/osga/osga.dsp +++ /dev/null @@ -1,180 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin osga" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin osga - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osga.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osga.mak" CFG="osgPlugin osga - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin osga - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin osga - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin osga - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin osga - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin osga - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_osga.dll" /implib:"../../../lib/$(PlatformName)/osgdb_osga.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osga - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_osgad.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_osgad.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osga - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_osga_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osga - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_osgad_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin osga - Win32 Release" -# Name "osgPlugin osga - Win32 Debug" -# Name "osgPlugin osga - Win32 Release Static" -# Name "osgPlugin osga - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osga\OSGA_Archive.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osga\ReaderWriterOSGA.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osga\OSGA_Archive.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgPlugins/osgtgz/osgtgz.dsp b/VisualStudio/osgPlugins/osgtgz/osgtgz.dsp deleted file mode 100644 index 30d5e1f1b..000000000 --- a/VisualStudio/osgPlugins/osgtgz/osgtgz.dsp +++ /dev/null @@ -1,174 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin osgtgz" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin osgtgz - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgtgz.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgtgz.mak" CFG="osgPlugin osgtgz - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin osgtgz - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin osgtgz - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin osgtgz - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin osgtgz - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin osgtgz - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_osgtgz.dll" /implib:"../../../lib/$(PlatformName)/osgdb_osgtgz.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgtgz - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_osgtgzd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_osgtgzd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgtgz - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_osgtgz_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin osgtgz - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_osgtgzd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - - -# Begin Target - -# Name "osgPlugin osgtgz - Win32 Release" -# Name "osgPlugin osgtgz - Win32 Debug" -# Name "osgPlugin osgtgz - Win32 Release Static" -# Name "osgPlugin osgtgz - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\osgtgz\ReaderWriterOSGTGZ.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/pfb/pfb.dsp b/VisualStudio/osgPlugins/pfb/pfb.dsp deleted file mode 100644 index 3c1e4aa2f..000000000 --- a/VisualStudio/osgPlugins/pfb/pfb.dsp +++ /dev/null @@ -1,123 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin pfb" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=osgPlugin pfb - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "pfb.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "pfb.mak" CFG="osgPlugin pfb - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin pfb - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin pfb - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin pfb - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "$(PFROOT)/include" /I "$(PFROOT)/include/Performer" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 libpf.lib libpfdu-util.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_pfb.dll" /implib:"../../../lib/$(PlatformName)/osgdb_pfb.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"$(PFROOT)/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin pfb - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "$(PFROOT)/include" /I "$(PFROOT)/include/Performer" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 libpf.lib libpfdu-util.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_pfbd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_pfbd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"$(PFROOT)/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin pfb - Win32 Release" -# Name "osgPlugin pfb - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\pfb\ConvertFromPerformer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\pfb\ReaderWriterPFB.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\pfb\stat.c -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\pfb\ConvertFromPerformer.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgPlugins/pic/pic.dsp b/VisualStudio/osgPlugins/pic/pic.dsp deleted file mode 100755 index bc155c6ce..000000000 --- a/VisualStudio/osgPlugins/pic/pic.dsp +++ /dev/null @@ -1,173 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin pic" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin pic - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "pic.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "pic.mak" CFG="osgPlugin pic - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin pic - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin pic - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin pic - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin pic - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin pic - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_pic.dll" /implib:"../../../lib/$(PlatformName)/osgdb_pic.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin pic - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_picd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_picd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin pic - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_pic_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin pic - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_picd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin pic - Win32 Release" -# Name "osgPlugin pic - Win32 Debug" -# Name "osgPlugin pic - Win32 Release Static" -# Name "osgPlugin pic - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\pic\ReaderWriterPIC.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/png/png.dsp b/VisualStudio/osgPlugins/png/png.dsp deleted file mode 100755 index cfefb9a77..000000000 --- a/VisualStudio/osgPlugins/png/png.dsp +++ /dev/null @@ -1,173 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin png" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin png - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "png.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "png.mak" CFG="osgPlugin png - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin png - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin png - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin png - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin png - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin png - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib libpng.lib zlib.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_png.dll" /implib:"../../../lib/$(PlatformName)/osgdb_png.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin png - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib libpngD.lib zlibD.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_pngd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_pngd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin png - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_png_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin png - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_pngd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin png - Win32 Release" -# Name "osgPlugin png - Win32 Debug" -# Name "osgPlugin png - Win32 Release Static" -# Name "osgPlugin png - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\png\ReaderWriterPNG.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/pnm/pnm.dsp b/VisualStudio/osgPlugins/pnm/pnm.dsp deleted file mode 100644 index 50030c03e..000000000 --- a/VisualStudio/osgPlugins/pnm/pnm.dsp +++ /dev/null @@ -1,173 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin pnm" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin pnm - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "pnm.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "pnm.mak" CFG="osgPlugin pnm - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin pnm - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin pnm - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin pnm - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin pnm - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin pnm - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_pnm.dll" /implib:"../../../lib/$(PlatformName)/osgdb_pnm.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin pnm - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_pnmd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_pnmd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin pnm - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_pnm_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin pnm - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_pnmd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin pnm - Win32 Release" -# Name "osgPlugin pnm - Win32 Debug" -# Name "osgPlugin pnm - Win32 Release Static" -# Name "osgPlugin pnm - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\pnm\ReaderWriterPNM.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/quicktime/quicktime.dsp b/VisualStudio/osgPlugins/quicktime/quicktime.dsp deleted file mode 100644 index 6bf8bf58d..000000000 --- a/VisualStudio/osgPlugins/quicktime/quicktime.dsp +++ /dev/null @@ -1,208 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin quicktime" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin quicktime - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "quicktime.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "quicktime.mak" CFG="osgPlugin quicktime - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin quicktime - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin quicktime - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin quicktime - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin quicktime - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin quicktime - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 -# ADD LINK32 OpenThreadsWin32.lib qtmlClient.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_qt.dll" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin quicktime - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib qtmlClient.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_qtd.dll" /pdbtype:sept /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin quicktime - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_qt_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin quicktime - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_qtd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - - - -# Begin Target - -# Name "osgPlugin quicktime - Win32 Release" -# Name "osgPlugin quicktime - Win32 Debug" -# Name "osgPlugin quicktime - Win32 Release Static" -# Name "osgPlugin quicktime - Win32 Debug Static" - -# Begin Group "Source Files" -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\quicktime\MovieData.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\quicktime\QTtexture.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\quicktime\QTUtils.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\quicktime\QuicktimeImageStream.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\quicktime\ReaderWriterQT.cpp -# End Source File - -# End Group - -# Begin Group "Header Files" -# PROP Default_Filter "h;hpp;hxx;hm;inl" - -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\quicktime\MovieData.h -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\quicktime\QTtexture.h -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\quicktime\QTUtils.h -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgPlugins\quicktime\QuicktimeImageStream.h -# End Source File - -# End Group - -# Begin Group "Resource Files" -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgPlugins/rgb/rgb.dsp b/VisualStudio/osgPlugins/rgb/rgb.dsp deleted file mode 100644 index 516a3c4e9..000000000 --- a/VisualStudio/osgPlugins/rgb/rgb.dsp +++ /dev/null @@ -1,173 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin rgb" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin rgb - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "rgb.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "rgb.mak" CFG="osgPlugin rgb - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin rgb - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin rgb - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin rgb - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin rgb - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin rgb - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_rgb.dll" /implib:"../../../lib/$(PlatformName)/osgdb_rgb.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin rgb - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_rgbd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_rgbd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin rgb - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_rgb_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin rgb - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_rgbd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin rgb - Win32 Release" -# Name "osgPlugin rgb - Win32 Debug" -# Name "osgPlugin rgb - Win32 Release Static" -# Name "osgPlugin rgb - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\rgb\ReaderWriterRGB.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/rot/rot.dsp b/VisualStudio/osgPlugins/rot/rot.dsp deleted file mode 100644 index f47506f1f..000000000 --- a/VisualStudio/osgPlugins/rot/rot.dsp +++ /dev/null @@ -1,172 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin rot" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin rot - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "rot.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "rot.mak" CFG="osgPlugin rot - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin rot - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin rot - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin rot - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin rot - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin rot - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_rot.dll" /implib:"../../../lib/$(PlatformName)/osgdb_rot.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin rot - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_rotd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_rotd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin rot - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_rot_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin rot - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_rotd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin rot - Win32 Release" -# Name "osgPlugin rot - Win32 Debug" -# Name "osgPlugin rot - Win32 Release Static" -# Name "osgPlugin rot - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\rot\ReaderWriterROT.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgPlugins/scale/scale.dsp b/VisualStudio/osgPlugins/scale/scale.dsp deleted file mode 100644 index 51006fe84..000000000 --- a/VisualStudio/osgPlugins/scale/scale.dsp +++ /dev/null @@ -1,172 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin scale" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin scale - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "scale.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "scale.mak" CFG="osgPlugin scale - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin scale - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin scale - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin scale - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin scale - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin scale - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_scale.dll" /implib:"../../../lib/$(PlatformName)/osgdb_scale.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin scale - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_scaled.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_scaled.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin scale - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_scale_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin scale - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_scaled_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin scale - Win32 Release" -# Name "osgPlugin scale - Win32 Debug" -# Name "osgPlugin scale - Win32 Release Static" -# Name "osgPlugin scale - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\scale\ReaderWriterSCALE.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgPlugins/stl/stl.dsp b/VisualStudio/osgPlugins/stl/stl.dsp deleted file mode 100644 index 2d78a7d1d..000000000 --- a/VisualStudio/osgPlugins/stl/stl.dsp +++ /dev/null @@ -1,172 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin stl" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin stl - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "stl.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "stl.mak" CFG="osgPlugin stl - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin stl - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin stl - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin stl - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin stl - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin stl - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_stl.dll" /implib:"../../../lib/$(PlatformName)/osgdb_stl.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin stl - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_stld.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_stld.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin stl - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_stl_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin stl - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_stld_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin stl - Win32 Release" -# Name "osgPlugin stl - Win32 Debug" -# Name "osgPlugin stl - Win32 Release Static" -# Name "osgPlugin stl - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\stl\ReaderWriterSTL.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgPlugins/tga/tga.dsp b/VisualStudio/osgPlugins/tga/tga.dsp deleted file mode 100755 index 61854ee54..000000000 --- a/VisualStudio/osgPlugins/tga/tga.dsp +++ /dev/null @@ -1,173 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin tga" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin tga - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "tga.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "tga.mak" CFG="osgPlugin tga - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin tga - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin tga - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin tga - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin tga - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin tga - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_tga.dll" /implib:"../../../lib/$(PlatformName)/osgdb_tga.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin tga - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_tgad.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_tgad.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin tga - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_tga_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin tga - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_tgad_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin tga - Win32 Release" -# Name "osgPlugin tga - Win32 Debug" -# Name "osgPlugin tga - Win32 Release Static" -# Name "osgPlugin tga - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\tga\ReaderWriterTGA.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/tgz/tgz.dsp b/VisualStudio/osgPlugins/tgz/tgz.dsp deleted file mode 100644 index fbe770897..000000000 --- a/VisualStudio/osgPlugins/tgz/tgz.dsp +++ /dev/null @@ -1,173 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin tgz" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin tgz - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "tgz.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "tgz.mak" CFG="osgPlugin tgz - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin tgz - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin tgz - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin tgz - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin tgz - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin tgz - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_tgz.dll" /implib:"../../../lib/$(PlatformName)/osgdb_tgz.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin tgz - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_tgzd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_tgzd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin tgz - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_tgz_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin tgz - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_tgzd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin tgz - Win32 Release" -# Name "osgPlugin tgz - Win32 Debug" -# Name "osgPlugin tgz - Win32 Release Static" -# Name "osgPlugin tgz - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\tgz\ReaderWriterTGZ.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/tiff/tiff.dsp b/VisualStudio/osgPlugins/tiff/tiff.dsp deleted file mode 100755 index 095e77314..000000000 --- a/VisualStudio/osgPlugins/tiff/tiff.dsp +++ /dev/null @@ -1,173 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin tiff" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin tiff - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "tiff.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "tiff.mak" CFG="osgPlugin tiff - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin tiff - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin tiff - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin tiff - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin tiff - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin tiff - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib libtiff.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_tiff.dll" /implib:"../../../lib/$(PlatformName)/osgdb_tiff.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin tiff - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib libtiffD.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_tiffd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_tiffd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "osgPlugin tiff - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_tiff_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin tiff - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_tiffd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin tiff - Win32 Release" -# Name "osgPlugin tiff - Win32 Debug" -# Name "osgPlugin tiff - Win32 Release Static" -# Name "osgPlugin tiff - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\tiff\ReaderWriterTIFF.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/trans/trans.dsp b/VisualStudio/osgPlugins/trans/trans.dsp deleted file mode 100644 index 6e4f1eabc..000000000 --- a/VisualStudio/osgPlugins/trans/trans.dsp +++ /dev/null @@ -1,172 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin trans" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin trans - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "trans.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "trans.mak" CFG="osgPlugin trans - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin trans - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin trans - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin trans - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin trans - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin trans - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_trans.dll" /implib:"../../../lib/$(PlatformName)/osgdb_trans.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin trans - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_transd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_transd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin trans - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_trans_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin trans - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_transd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin trans - Win32 Release" -# Name "osgPlugin trans - Win32 Debug" -# Name "osgPlugin trans - Win32 Release Static" -# Name "osgPlugin trans - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\trans\ReaderWriterTRANS.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgPlugins/txf/txf.dsp b/VisualStudio/osgPlugins/txf/txf.dsp deleted file mode 100644 index c6aa5131f..000000000 --- a/VisualStudio/osgPlugins/txf/txf.dsp +++ /dev/null @@ -1,181 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin txf" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin txf - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "txf.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "txf.mak" CFG="osgPlugin txf - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin txf - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin txf - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin txf - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin txf - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin txf - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_txf.dll" /implib:"../../../lib/$(PlatformName)/osgdb_txf.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin txf - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_txfd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_txfd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin txf - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_txf_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin txf - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_txfd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin txf - Win32 Release" -# Name "osgPlugin txf - Win32 Debug" -# Name "osgPlugin txf - Win32 Release Static" -# Name "osgPlugin txf - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txf\ReaderWriterTXF.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txf\TXFFont.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txf\TXFFont.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/txp/txp.dsp b/VisualStudio/osgPlugins/txp/txp.dsp deleted file mode 100644 index 27052898d..000000000 --- a/VisualStudio/osgPlugins/txp/txp.dsp +++ /dev/null @@ -1,377 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin txp" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin txp - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "txp.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "txp.mak" CFG="osgPlugin txp - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin txp - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin txp - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin txp - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin txp - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin txp - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /I "../../../src/osgPlugins/txp" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "OSGTXP_LIBRARY" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x41a /d "NDEBUG" -# ADD RSC /l 0x41a /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_txp.dll" /implib:"../../../lib/$(PlatformName)/osgdb_txp.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin txp - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /I "../../../src/osgPlugins/txp" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D __COMP_DLL=7931 /D "WIN32" /D "_DEBUG" /D "OSGTXP_LIBRARY" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x41a /d "_DEBUG" -# ADD RSC /l 0x41a /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_txpd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_txpd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin txp - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /I "../../../src/osgPlugins/txp" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_txp_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin txp - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /I "../../../src/osgPlugins/txp" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_txpd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin txp - Win32 Release" -# Name "osgPlugin txp - Win32 Debug" -# Name "osgPlugin txp - Win32 Release Static" -# Name "osgPlugin txp - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\ReaderWriterTXP.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\TileMapper.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_basic.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_compat.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_geom.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_header.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_label.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_light.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_main.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_managers.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_material.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_model.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_nodes.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_parse.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_pparse.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_print.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_range.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_rarchive.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_readbuf.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_scene.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_swap.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_tile.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_warchive.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_writebuf.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\TXPArchive.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\TXPIO.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\TXPNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\TXPPagedLOD.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\TXPPageManager.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\TXPParser.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\TXPSeamLOD.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\ReaderWriterTXP.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\TileMapper.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trdll.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_compat.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_geom.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_ident.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_io.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_managers.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_print.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_read.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_scene.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_swap.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_sys.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_util.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\trpage_write.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\TXPArchive.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\TXPNode.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\TXPPagedLOD.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\TXPPageManager.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\TXPParser.h -# End Source File -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\txp\TXPSeamLOD.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgPlugins/zip/zip.dsp b/VisualStudio/osgPlugins/zip/zip.dsp deleted file mode 100644 index 9d676bfdb..000000000 --- a/VisualStudio/osgPlugins/zip/zip.dsp +++ /dev/null @@ -1,173 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgPlugin zip" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=osgPlugin zip - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "zip.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "zip.mak" CFG="osgPlugin zip - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgPlugin zip - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin zip - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgPlugin zip - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "osgPlugin zip - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgPlugin zip - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgdb_zip.dll" /implib:"../../../lib/$(PlatformName)/osgdb_zip.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin zip - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgdb_zipd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgdb_zipd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin zip - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_zip_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgPlugin zip - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgdb_zipd_s.lib" -# SUBTRACT LIB32 /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgPlugin zip - Win32 Release" -# Name "osgPlugin zip - Win32 Debug" -# Name "osgPlugin zip - Win32 Release Static" -# Name "osgPlugin zip - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\src\osgPlugins\zip\ReaderWriterZIP.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgShadow/osgShadow.dsp b/VisualStudio/osgShadow/osgShadow.dsp deleted file mode 100644 index c95551e96..000000000 --- a/VisualStudio/osgShadow/osgShadow.dsp +++ /dev/null @@ -1,234 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Core osgShadow" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=Core osgShadow - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgShadow.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgShadow.mak" CFG="Core osgShadow - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Core osgShadow - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "Core osgShadow - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "Core osgShadow - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "Core osgShadow - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Core osgShadow - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "NDEBUG" /D "_MBCS" /D "_USRDLL" /D "OSGSHADOW_LIBRARY" /D "WIN32" /D "_WINDOWS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgShadow.dll" /implib:"../../lib/$(PlatformName)/osgShadow.lib" /libpath:"../../lib/$(PlatformName)" /libpath:"../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Core osgShadow - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "OSGSHADOW_LIBRARY" /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /out:"$(OutDir)/osgShadowd.dll" /pdbtype:sept /implib:"../../lib/$(PlatformName)/osgShadowd.lib" /libpath:"../../lib/$(PlatformName)" /libpath:"../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "Core osgShadow - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" "OT_LIBRARY_STATIC" "PR_LIBRARY_STATIC" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "NDEBUG" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "WIN32" /D "_WINDOWS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgShadow_s.lib" - -!ELSEIF "$(CFG)" == "Core osgShadow - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" "OT_LIBRARY_STATIC" "PR_LIBRARY_STATIC" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgShadowd_s.lib" -# SUBTRACT LIB32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "Core osgShadow - Win32 Release" -# Name "Core osgShadow - Win32 Debug" -# Name "Core osgShadow - Win32 Release Static" -# Name "Core osgShadow - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\osgShadow\OccluderGeometry.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgShadow\ShadowedScene.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgShadow\ShadowTechnique.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgShadow\ShadowTexture.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgShadow\ShadowMap.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgShadow\ShadowVolume.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgShadow\ParallelSplitShadowMap.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgShadow\Version.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter ";h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\osgShadow\Export -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgShadow\OccluderGeometry -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgShadow\ShadowedScene -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgShadow\ShadowTechnique -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgShadow\ShadowTexture -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgShadow\ShadowMap -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgShadow\ShadowVolume -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgShadow\ParallelSplitShadowMap -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgShadow\Version -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgSim/osgSim.dsp b/VisualStudio/osgSim/osgSim.dsp deleted file mode 100644 index 0badb564d..000000000 --- a/VisualStudio/osgSim/osgSim.dsp +++ /dev/null @@ -1,350 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Core osgSim" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=Core osgSim - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgSim.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgSim.mak" CFG="Core osgSim - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Core osgSim - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "Core osgSim - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "Core osgSim - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "Core osgSim - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Core osgSim - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /Op /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "NDEBUG" /D "_MBCS" /D "_USRDLL" /D "OSGSIM_LIBRARY" /D "WIN32" /D "_WINDOWS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgSim.dll" /implib:"../../lib/$(PlatformName)/osgSim.lib" /libpath:"../../lib/$(PlatformName)" /libpath:"../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Core osgSim - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "OSGSIM_LIBRARY" /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /out:"$(OutDir)/osgSimd.dll" /pdbtype:sept /implib:"../../lib/$(PlatformName)/osgSimd.lib" /libpath:"../../lib/$(PlatformName)" /libpath:"../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "Core osgSim - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgSim_s.lib" - -!ELSEIF "$(CFG)" == "Core osgSim - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# SUBTRACT CPP /X -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgSimd_s.lib" - -!ENDIF - -# Begin Target - -# Name "Core osgSim - Win32 Release" -# Name "Core osgSim - Win32 Debug" -# Name "Core osgSim - Win32 Release Static" -# Name "Core osgSim - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\osgSim\BlinkSequence.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\ColorRange.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\DOFTransform.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\ElevationSlice.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\HeightAboveTerrain.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\Impostor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\ImpostorSprite.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\InsertImpostorsVisitor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\LightPoint.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\LightPointDrawable.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\LightPointSpriteDrawable.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\LightPointNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\LineOfSight.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\MultiSwitch.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\OverlayNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\OpenFlightOptimizer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\ScalarBar.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\ScalarsToColors.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\Sector.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\SphereSegment.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\Version.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\VisibilityGroup.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter ";h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\osgSim\BlinkSequence -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgSim\ColorRange -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgSim\DOFTransform -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgSim\Export -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgSim\HeightAboveTerrain -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgSim\ElevationSlice -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgSim\Impostor -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgSim\ImpostorSprite -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgSim\InsertImpostorsVisitor -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgSim\LightPoint -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\LightPointDrawable.h -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgSim\LightPointSpriteDrawable.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgSim\LightPointNode -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgSim\LightPointSystem -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgSim\LineOfSight -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgSim\MultiSwitch -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgSim\OverlayNode -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgSim\OpenFlightOptimizer -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgSim\ScalarBar -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgSim\ScalarsToColors -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgSim\Sector -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgSim\SphereSegment -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgSim\Version -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgSim\VisibilityGroup -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgTerrain/osgTerrain.dsp b/VisualStudio/osgTerrain/osgTerrain.dsp deleted file mode 100644 index f210f6657..000000000 --- a/VisualStudio/osgTerrain/osgTerrain.dsp +++ /dev/null @@ -1,218 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Core osgTerrain" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=Core osgTerrain - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgTerrain.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgTerrain.mak" CFG="Core osgTerrain - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Core osgTerrain - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "Core osgTerrain - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "Core osgTerrain - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "Core osgTerrain - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Core osgTerrain - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /Op /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "NDEBUG" /D "_MBCS" /D "_USRDLL" /D "OSGTERRAIN_LIBRARY" /D "WIN32" /D "_WINDOWS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgTerrain.dll" /implib:"../../lib/$(PlatformName)/osgTerrain.lib" /libpath:"../../lib/$(PlatformName)" /libpath:"../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Core osgTerrain - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "OSGTERRAIN_LIBRARY" /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /out:"$(OutDir)/osgTerraind.dll" /pdbtype:sept /implib:"../../lib/$(PlatformName)/osgTerraind.lib" /libpath:"../../lib/$(PlatformName)" /libpath:"../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "Core osgTerrain - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" "OT_LIBRARY_STATIC" "PR_LIBRARY_STATIC" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "NDEBUG" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "WIN32" /D "_WINDOWS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgTerrain_s.lib" - -!ELSEIF "$(CFG)" == "Core osgTerrain - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" "OT_LIBRARY_STATIC" "PR_LIBRARY_STATIC" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgTerraind_s.lib" -# SUBTRACT LIB32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "Core osgTerrain - Win32 Release" -# Name "Core osgTerrain - Win32 Debug" -# Name "Core osgTerrain - Win32 Release Static" -# Name "Core osgTerrain - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\osgTerrain\Layer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgTerrain\Locator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgTerrain\TerrainNode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgTerrain\TerrainTechnique.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgTerrain\GeometryTechnique.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgTerrain\Version.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter ";h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\osgTerrain\Export -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgTerrain\Layer -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgTerrain\Locator -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgTerrain\TerrainNode -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgTerrain\TerrainTechnique -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgTerrain\GeometryTechnique -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgTerrain\Version -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgText/osgText.dsp b/VisualStudio/osgText/osgText.dsp deleted file mode 100644 index 06fe41e53..000000000 --- a/VisualStudio/osgText/osgText.dsp +++ /dev/null @@ -1,214 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Core osgText" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=Core osgText - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgText.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgText.mak" CFG="Core osgText - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Core osgText - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "Core osgText - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "Core osgText - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "Core osgText - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Core osgText - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "NDEBUG" /D "_MBCS" /D "_USRDLL" /D "OSGTEXT_LIBRARY" /D "WIN32" /D "_WINDOWS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgText.dll" /implib:"../../lib/$(PlatformName)/osgText.lib" /libpath:"../../lib/$(PlatformName)" /libpath:"../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Core osgText - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "OSGTEXT_LIBRARY" /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /out:"$(OutDir)/osgTextd.dll" /pdbtype:sept /implib:"../../lib/$(PlatformName)/osgTextd.lib" /libpath:"../../lib/$(PlatformName)" /libpath:"../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "Core osgText - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" "OT_LIBRARY_STATIC" "PR_LIBRARY_STATIC" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "NDEBUG" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "WIN32" /D "_WINDOWS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgText_s.lib" - -!ELSEIF "$(CFG)" == "Core osgText - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" "OT_LIBRARY_STATIC" "PR_LIBRARY_STATIC" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgTextd_s.lib" -# SUBTRACT LIB32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "Core osgText - Win32 Release" -# Name "Core osgText - Win32 Debug" -# Name "Core osgText - Win32 Release Static" -# Name "Core osgText - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\osgText\DefaultFont.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgText\Font.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgText\String.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgText\Text.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgText\FadeText.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgText\Version.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter ";h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\osgText\Export -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgText\Font -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgText\String -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgText\Text -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgText\FadeText -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgText\Version -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgUtil/osgUtil.dsp b/VisualStudio/osgUtil/osgUtil.dsp deleted file mode 100755 index 093ce2678..000000000 --- a/VisualStudio/osgUtil/osgUtil.dsp +++ /dev/null @@ -1,422 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Core osgUtil" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=Core osgUtil - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgUtil.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgUtil.mak" CFG="Core osgUtil - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Core osgUtil - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "Core osgUtil - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "Core osgUtil - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "Core osgUtil - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Core osgUtil - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "NDEBUG" /D "_MBCS" /D "_USRDLL" /D "OSGUTIL_LIBRARY" /D "_WINDOWS" /D "WIN32" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgUtil.dll" /implib:"../../lib/$(PlatformName)/osgUtil.lib" /libpath:"../../lib/$(PlatformName)" /libpath:"../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Core osgUtil - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "_DEBUG" /D "OSGUTIL_LIBRARY" /D "_WINDOWS" /D "WIN32" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /out:"$(OutDir)/osgUtild.dll" /pdbtype:sept /implib:"../../lib/$(PlatformName)/osgUtild.lib" /libpath:"../../lib/$(PlatformName)" /libpath:"../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "Core osgUtil - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "NDEBUG" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "WIN32" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgUtil_s.lib" - -!ELSEIF "$(CFG)" == "Core osgUtil - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "_DEBUG" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "WIN32" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgUtild_s.lib" -# SUBTRACT LIB32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "Core osgUtil - Win32 Release" -# Name "Core osgUtil - Win32 Debug" -# Name "Core osgUtil - Win32 Release Static" -# Name "Core osgUtil - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\osgUtil\CubeMapGenerator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\CullVisitor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\DelaunayTriangulator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\DisplayRequirementsVisitor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\GLObjectsVisitor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\HalfWayMapGenerator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\HighlightMapGenerator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\IntersectVisitor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\IntersectionVisitor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\LineSegmentIntersector.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\PlaneIntersector.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\PolytopeIntersector.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\Optimizer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\RenderBin.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\StateGraph.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\RenderLeaf.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\RenderStage.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\PositionalStateContainer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\SceneView.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\Simplifier.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\SmoothingVisitor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\Statistics.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\TangentSpaceGenerator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\Tessellator.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\TransformAttributeFunctor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\TransformCallback.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\TriStrip_tri_stripper.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\TriStripVisitor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\UpdateVisitor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgUtil\Version.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter ";h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\osgUtil\CubeMapGenerator -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgUtil\CullVisitor -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgUtil\DelaunayTriangulator -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgUtil\DisplayRequirementsVisitor -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgUtil\Export -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgUtil\GLObjectsVisitor -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgUtil\HalfWayMapGenerator -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgUtil\HighlightMapGenerator -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgUtil\IntersectVisitor -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgUtil\IntersectionVisitor -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgUtil\LineSegmentIntersector -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgUtil\PlaneIntersector -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgUtil\PolytopeIntersector -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgUtil\Optimizer -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgUtil\ReflectionMapGenerator -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgUtil\RenderBin -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgUtil\StateGraph -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgUtil\RenderLeaf -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgUtil\RenderStage -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgUtil\PositionalStateContainer -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgUtil\SceneView -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgUtil\Simplifier -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgUtil\SmoothingVisitor -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgUtil\Statistics -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgUtil\TangentSpaceGenerator -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgUtil\Tessellator -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgUtil\TransformAttributeFunctor -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgUtil\TransformCallback -# End Source File -# Begin Source File - -SOURCE=..\..\Src\osgUtil\TriStrip_graph_array.h -# End Source File -# Begin Source File - -SOURCE=..\..\Src\osgUtil\TriStrip_heap_array.h -# End Source File -# Begin Source File - -SOURCE=..\..\Src\osgUtil\TriStrip_tri_stripper.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgUtil\TriStripVisitor -# End Source File -# Begin Source File - -SOURCE=..\..\include\osgUtil\UpdateVisitor -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgUtil\Version -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/VisualStudio/osgViewer/osgViewer.dsp b/VisualStudio/osgViewer/osgViewer.dsp deleted file mode 100644 index 4e4efe0ea..000000000 --- a/VisualStudio/osgViewer/osgViewer.dsp +++ /dev/null @@ -1,247 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Core osgViewer" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=Core osgViewer - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "osgViewer.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "osgViewer.mak" CFG="Core osgViewer - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Core osgViewer - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "Core osgViewer - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "Core osgViewer - Win32 Release Static" (based on "Win32 (x86) Static Library") -!MESSAGE "Core osgViewer - Win32 Debug Static" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Core osgViewer - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "NDEBUG" /D "_MBCS" /D "_USRDLL" /D "OSGVIEWER_LIBRARY" /D "WIN32" /D "_WINDOWS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /opt:ref /opt:icf /out:"$(OutDir)/osgViewer.dll" /implib:"../../lib/$(PlatformName)/osgViewer.lib" /libpath:"../../lib/$(PlatformName)" /libpath:"../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib" - -!ELSEIF "$(CFG)" == "Core osgViewer - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "OSGVIEWER_LIBRARY" /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 OpenThreadsWin32d.lib opengl32.lib glu32.lib /nologo /dll /debug /machine:I386 /out:"$(OutDir)/osgViewerd.dll" /pdbtype:sept /implib:"../../lib/$(PlatformName)/osgViewerd.lib" /libpath:"../../lib/$(PlatformName)" /libpath:"../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "Core osgViewer - Win32 Release Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Release_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "NDEBUG" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "WIN32" /D "_WINDOWS" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgViewer_s.lib" - -!ELSEIF "$(CFG)" == "Core osgViewer - Win32 Debug Static" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "../../lib" -# PROP BASE Intermediate_Dir "Debug_Static" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../lib/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)_Static" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /vmg /GR /GX /Z7 /Od /I "../../include" /I "../../../OpenThreads/include" /I "../../../3rdParty/include" /D "OSG_LIBRARY_STATIC" /D "OT_LIBRARY_STATIC" /D "PR_LIBRARY_STATIC" /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nodefaultlib /nologo /out:"$(OutDir)/osgViewerd_s.lib" -# SUBTRACT LIB32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "Core osgViewer - Win32 Release" -# Name "Core osgViewer - Win32 Debug" -# Name "Core osgViewer - Win32 Release Static" -# Name "Core osgViewer - Win32 Debug Static" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\osgViewer\GraphicsWindowWin32.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgViewer\Scene.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgViewer\SimpleViewer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgViewer\View.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgViewer\Viewer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgViewer\CompositeViewer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgViewer\HelpHandler.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgViewer\StatsHandler.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\osgViewer\Version.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter ";h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\Include\osgViewer\Export -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgViewer\GraphicsWindow -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgViewer\api\Win32\GraphicsWindowWin32 -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgViewer\Scene -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgViewer\View -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgViewer\Viewer -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgViewer\CompositeViewer -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgViewer\SimpleViewer -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgViewer\HelpHandler -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgViewer\StatsHandler -# End Source File -# Begin Source File - -SOURCE=..\..\Include\osgViewer\Version -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgWrappers/osg/wrapper_osg.dsp b/VisualStudio/osgWrappers/osg/wrapper_osg.dsp deleted file mode 100644 index ee36979e3..000000000 --- a/VisualStudio/osgWrappers/osg/wrapper_osg.dsp +++ /dev/null @@ -1,665 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgWrapper osg" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=osgWrapper osg - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osg.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osg.mak" CFG="osgWrapper osg - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgWrapper osg - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgWrapper osg - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgWrapper osg - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgwrapper_osg.dll" /implib:"../../../lib/$(PlatformName)/osgwrapper_osg.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgWrapper osg - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgwrapper_osgd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgwrapper_osgd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgWrapper osg - Win32 Release" -# Name "osgWrapper osg - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\AlphaFunc.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\AnimationPath.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\ApplicationUsage.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\ArgumentParser.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Array.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\AutoTransform.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Billboard.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\BlendColor.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\BlendEquation.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\BlendFunc.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\BoundingBox.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\BoundingSphere.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\BufferObject.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Camera.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\CameraNode.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\CameraView.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\ClampColor.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\ClearNode.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\ClipNode.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\ClipPlane.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\ClusterCullingCallback.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\CollectOccludersVisitor.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\ColorMask.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\ColorMatrix.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\ComputeBoundsVisitor.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\ConvexPlanarOccluder.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\ConvexPlanarPolygon.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\CoordinateSystemNode.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\CopyOp.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\CullFace.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\CullSettings.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\CullStack.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\CullingSet.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\DeleteHandler.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Depth.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\DisplaySettings.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\DrawPixels.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Drawable.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Endian.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Fog.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\FragmentProgram.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\FrameBufferObject.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\FrameStamp.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\FrontFace.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\GL2Extensions.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Geode.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Geometry.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\GraphicsContext.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\GraphicsThread.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Group.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Image.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\ImageStream.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\LOD.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Light.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\LightModel.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\LightSource.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\LineSegment.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\LineStipple.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\LineWidth.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\LogicOp.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Material.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Matrix.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\MatrixTransform.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Matrixd.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Matrixf.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Multisample.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Node.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\NodeCallback.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\NodeTrackerCallback.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\NodeVisitor.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Notify.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Object.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\OccluderNode.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\PagedLOD.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Plane.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Point.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\PointSprite.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\PolygonMode.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\PolygonOffset.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\PolygonStipple.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Polytope.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\PositionAttitudeTransform.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\PrimitiveSet.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Program.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Projection.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\ProxyNode.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Quat.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Referenced.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\RenderInfo.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Scissor.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Sequence.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\ShadeModel.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Shader.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\ShadowVolumeOccluder.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Shape.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\ShapeDrawable.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\State.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\StateAttribute.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\StateSet.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Stats.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Stencil.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\StencilTwoSided.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Switch.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\TexEnv.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\TexEnvCombine.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\TexEnvFilter.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\TexGen.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\TexGenNode.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\TexMat.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Texture.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Texture1D.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Texture2D.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Texture3D.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\TextureCubeMap.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\TextureRectangle.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Timer.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\TransferFunction.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Transform.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Uniform.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Vec2.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Vec2b.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Vec2d.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Vec2f.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Vec2s.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Vec3.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Vec3b.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Vec3d.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Vec3f.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Vec3s.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Vec4.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Vec4b.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Vec4d.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Vec4f.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Vec4s.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Vec4ub.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\VertexProgram.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\View.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\Viewport.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osg\observer_ptr.cpp -# End Source File - -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgWrappers/osgDB/wrapper_osgDB.dsp b/VisualStudio/osgWrappers/osgDB/wrapper_osgDB.dsp deleted file mode 100644 index fbb44c51a..000000000 --- a/VisualStudio/osgWrappers/osgDB/wrapper_osgDB.dsp +++ /dev/null @@ -1,169 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgWrapper osgDB" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=osgWrapper osgDB - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgDB.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgDB.mak" CFG="osgWrapper osgDB - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgWrapper osgDB - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgWrapper osgDB - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgWrapper osgDB - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgwrapper_osgDB.dll" /implib:"../../../lib/$(PlatformName)/osgwrapper_osgDB.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgWrapper osgDB - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgwrapper_osgDBd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgwrapper_osgDBd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgWrapper osgDB - Win32 Release" -# Name "osgWrapper osgDB - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgDB\Archive.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgDB\DatabasePager.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgDB\DotOsgWrapper.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgDB\DynamicLibrary.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgDB\Field.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgDB\FieldReader.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgDB\FieldReaderIterator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgDB\FileUtils.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgDB\ImageOptions.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgDB\Input.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgDB\Output.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgDB\ParameterOutput.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgDB\ReaderWriter.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgDB\Registry.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgDB\SharedStateManager.cpp -# End Source File - -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgWrappers/osgFX/wrapper_osgFX.dsp b/VisualStudio/osgWrappers/osgFX/wrapper_osgFX.dsp deleted file mode 100644 index a80a33b59..000000000 --- a/VisualStudio/osgWrappers/osgFX/wrapper_osgFX.dsp +++ /dev/null @@ -1,149 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgWrapper osgFX" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=osgWrapper osgFX - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgFX.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgFX.mak" CFG="osgWrapper osgFX - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgWrapper osgFX - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgWrapper osgFX - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgWrapper osgFX - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgwrapper_osgFX.dll" /implib:"../../../lib/$(PlatformName)/osgwrapper_osgFX.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgWrapper osgFX - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgwrapper_osgFXd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgwrapper_osgFXd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgWrapper osgFX - Win32 Release" -# Name "osgWrapper osgFX - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgFX\AnisotropicLighting.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgFX\BumpMapping.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgFX\Cartoon.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgFX\Effect.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgFX\MultiTextureControl.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgFX\Registry.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgFX\Scribe.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgFX\SpecularHighlights.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgFX\Technique.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgFX\Validator.cpp -# End Source File - -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgWrappers/osgGA/wrapper_osgGA.dsp b/VisualStudio/osgWrappers/osgGA/wrapper_osgGA.dsp deleted file mode 100644 index 6b2849b0e..000000000 --- a/VisualStudio/osgWrappers/osgGA/wrapper_osgGA.dsp +++ /dev/null @@ -1,169 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgWrapper osgGA" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=osgWrapper osgGA - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgGA.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgGA.mak" CFG="osgWrapper osgGA - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgWrapper osgGA - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgWrapper osgGA - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgWrapper osgGA - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgwrapper_osgGA.dll" /implib:"../../../lib/$(PlatformName)/osgwrapper_osgGA.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgWrapper osgGA - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgwrapper_osgGAd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgwrapper_osgGAd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgWrapper osgGA - Win32 Release" -# Name "osgWrapper osgGA - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgGA\AnimationPathManipulator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgGA\DriveManipulator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgGA\EventQueue.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgGA\EventVisitor.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgGA\FlightManipulator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgGA\GUIActionAdapter.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgGA\GUIEventAdapter.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgGA\GUIEventHandler.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgGA\KeySwitchMatrixManipulator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgGA\MatrixManipulator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgGA\NodeTrackerManipulator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgGA\StateSetManipulator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgGA\TerrainManipulator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgGA\TrackballManipulator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgGA\UFOManipulator.cpp -# End Source File - -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgWrappers/osgManipulator/wrapper_osgManipulator.dsp b/VisualStudio/osgWrappers/osgManipulator/wrapper_osgManipulator.dsp deleted file mode 100644 index 393161ab5..000000000 --- a/VisualStudio/osgWrappers/osgManipulator/wrapper_osgManipulator.dsp +++ /dev/null @@ -1,189 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgWrapper osgManipulator" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=osgWrapper osgManipulator - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgManipulator.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgManipulator.mak" CFG="osgWrapper osgManipulator - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgWrapper osgManipulator - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgWrapper osgManipulator - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgWrapper osgManipulator - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgwrapper_osgManipulator.dll" /implib:"../../../lib/$(PlatformName)/osgwrapper_osgManipulator.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgWrapper osgManipulator - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgwrapper_osgManipulatord.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgwrapper_osgManipulatord.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgWrapper osgManipulator - Win32 Release" -# Name "osgWrapper osgManipulator - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgManipulator\AntiSquish.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgManipulator\Command.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgManipulator\CommandManager.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgManipulator\Constraint.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgManipulator\Dragger.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgManipulator\Projector.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgManipulator\RotateCylinderDragger.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgManipulator\RotateSphereDragger.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgManipulator\Scale1DDragger.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgManipulator\Scale2DDragger.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgManipulator\ScaleAxisDragger.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgManipulator\Selection.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgManipulator\TabBoxDragger.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgManipulator\TabPlaneDragger.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgManipulator\TabPlaneTrackballDragger.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgManipulator\TrackballDragger.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgManipulator\Translate1DDragger.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgManipulator\Translate2DDragger.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgManipulator\TranslateAxisDragger.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgManipulator\TranslatePlaneDragger.cpp -# End Source File - -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgWrappers/osgParticle/wrapper_osgParticle.dsp b/VisualStudio/osgWrappers/osgParticle/wrapper_osgParticle.dsp deleted file mode 100644 index 19756b395..000000000 --- a/VisualStudio/osgWrappers/osgParticle/wrapper_osgParticle.dsp +++ /dev/null @@ -1,261 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgWrapper osgParticle" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=osgWrapper osgParticle - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgParticle.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgParticle.mak" CFG="osgWrapper osgParticle - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgWrapper osgParticle - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgWrapper osgParticle - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgWrapper osgParticle - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgwrapper_osgParticle.dll" /implib:"../../../lib/$(PlatformName)/osgwrapper_osgParticle.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgWrapper osgParticle - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgwrapper_osgParticled.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgwrapper_osgParticled.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgWrapper osgParticle - Win32 Release" -# Name "osgWrapper osgParticle - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\AccelOperator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\AngularAccelOperator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\BoxPlacer.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\CenteredPlacer.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\ConnectedParticleSystem.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\ConstantRateCounter.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\Counter.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\Emitter.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\ExplosionDebrisEffect.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\ExplosionEffect.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\FireEffect.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\FluidFrictionOperator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\FluidProgram.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\ForceOperator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\Interpolator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\LinearInterpolator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\ModularEmitter.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\ModularProgram.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\MultiSegmentPlacer.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\Operator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\Particle.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\ParticleEffect.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\ParticleProcessor.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\ParticleSystem.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\ParticleSystemUpdater.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\Placer.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\PointPlacer.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\PrecipitationEffect.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\Program.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\RadialShooter.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\RandomRateCounter.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\SectorPlacer.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\SegmentPlacer.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\Shooter.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\SmokeEffect.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\SmokeTrailEffect.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\VariableRateCounter.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgParticle\range.cpp -# End Source File - -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgWrappers/osgShadow/wrapper_osgShadow.dsp b/VisualStudio/osgWrappers/osgShadow/wrapper_osgShadow.dsp deleted file mode 100644 index 10a0316ed..000000000 --- a/VisualStudio/osgWrappers/osgShadow/wrapper_osgShadow.dsp +++ /dev/null @@ -1,141 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgWrapper osgShadow" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=osgWrapper osgShadow - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgShadow.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgShadow.mak" CFG="osgWrapper osgShadow - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgWrapper osgShadow - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgWrapper osgShadow - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgWrapper osgShadow - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgwrapper_osgShadow.dll" /implib:"../../../lib/$(PlatformName)/osgwrapper_osgShadow.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgWrapper osgShadow - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgwrapper_osgShadowd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgwrapper_osgShadowd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgWrapper osgShadow - Win32 Release" -# Name "osgWrapper osgShadow - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgShadow\Export.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgShadow\OccluderGeometry.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgShadow\ParallelSplitShadowMap.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgShadow\ShadowMap.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgShadow\ShadowTechnique.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgShadow\ShadowTexture.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgShadow\ShadowVolume.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgShadow\ShadowedScene.cpp -# End Source File - -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgWrappers/osgSim/wrapper_osgSim.dsp b/VisualStudio/osgWrappers/osgSim/wrapper_osgSim.dsp deleted file mode 100644 index 708baa5f1..000000000 --- a/VisualStudio/osgWrappers/osgSim/wrapper_osgSim.dsp +++ /dev/null @@ -1,193 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgWrapper osgSim" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=osgWrapper osgSim - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgSim.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgSim.mak" CFG="osgWrapper osgSim - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgWrapper osgSim - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgWrapper osgSim - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgWrapper osgSim - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgwrapper_osgSim.dll" /implib:"../../../lib/$(PlatformName)/osgwrapper_osgSim.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgWrapper osgSim - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgwrapper_osgSimd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgwrapper_osgSimd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgWrapper osgSim - Win32 Release" -# Name "osgWrapper osgSim - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\BlinkSequence.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\ColorRange.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\DOFTransform.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\ElevationSlice.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\GeographicLocation.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\HeightAboveTerrain.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\Impostor.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\ImpostorSprite.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\InsertImpostorsVisitor.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\LightPoint.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\LightPointNode.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\LightPointSystem.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\LineOfSight.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\MultiSwitch.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\OpenFlightOptimizer.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\OverlayNode.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\ScalarBar.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\ScalarsToColors.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\Sector.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\SphereSegment.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgSim\VisibilityGroup.cpp -# End Source File - -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgWrappers/osgTerrain/wrapper_osgTerrain.dsp b/VisualStudio/osgWrappers/osgTerrain/wrapper_osgTerrain.dsp deleted file mode 100644 index 7448a5392..000000000 --- a/VisualStudio/osgWrappers/osgTerrain/wrapper_osgTerrain.dsp +++ /dev/null @@ -1,133 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgWrapper osgTerrain" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=osgWrapper osgTerrain - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgTerrain.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgTerrain.mak" CFG="osgWrapper osgTerrain - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgWrapper osgTerrain - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgWrapper osgTerrain - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgWrapper osgTerrain - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32.lib gdal_i.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgwrapper_osgTerrain.dll" /implib:"../../../lib/$(PlatformName)/osgwrapper_osgTerrain.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgWrapper osgTerrain - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32d.lib gdal_iD.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgwrapper_osgTerraind.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgwrapper_osgTerraind.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgWrapper osgTerrain - Win32 Release" -# Name "osgWrapper osgTerrain - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgTerrain\Export.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgTerrain\GeometryTechnique.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgTerrain\Layer.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgTerrain\Locator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgTerrain\TerrainNode.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgTerrain\TerrainTechnique.cpp -# End Source File - -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgWrappers/osgText/wrapper_osgText.dsp b/VisualStudio/osgWrappers/osgText/wrapper_osgText.dsp deleted file mode 100644 index 2e2a7bf18..000000000 --- a/VisualStudio/osgWrappers/osgText/wrapper_osgText.dsp +++ /dev/null @@ -1,129 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgWrapper osgText" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=osgWrapper osgText - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgText.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgText.mak" CFG="osgWrapper osgText - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgWrapper osgText - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgWrapper osgText - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgWrapper osgText - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgwrapper_osgText.dll" /implib:"../../../lib/$(PlatformName)/osgwrapper_osgText.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgWrapper osgText - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgwrapper_osgTextd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgwrapper_osgTextd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgWrapper osgText - Win32 Release" -# Name "osgWrapper osgText - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgText\Export.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgText\FadeText.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgText\Font.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgText\String.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgText\Text.cpp -# End Source File - -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgWrappers/osgUtil/wrapper_osgUtil.dsp b/VisualStudio/osgWrappers/osgUtil/wrapper_osgUtil.dsp deleted file mode 100644 index 398f55c61..000000000 --- a/VisualStudio/osgWrappers/osgUtil/wrapper_osgUtil.dsp +++ /dev/null @@ -1,225 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgWrapper osgUtil" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=osgWrapper osgUtil - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgUtil.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgUtil.mak" CFG="osgWrapper osgUtil - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgWrapper osgUtil - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgWrapper osgUtil - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgWrapper osgUtil - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgwrapper_osgUtil.dll" /implib:"../../../lib/$(PlatformName)/osgwrapper_osgUtil.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgWrapper osgUtil - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgwrapper_osgUtild.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgwrapper_osgUtild.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgWrapper osgUtil - Win32 Release" -# Name "osgWrapper osgUtil - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\CubeMapGenerator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\CullVisitor.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\DelaunayTriangulator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\DisplayRequirementsVisitor.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\GLObjectsVisitor.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\HalfWayMapGenerator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\HighlightMapGenerator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\IntersectVisitor.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\IntersectionVisitor.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\LineSegmentIntersector.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\Optimizer.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\PlaneIntersector.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\PolytopeIntersector.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\PositionalStateContainer.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\ReflectionMapGenerator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\RenderBin.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\RenderLeaf.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\RenderStage.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\SceneView.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\Simplifier.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\SmoothingVisitor.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\StateGraph.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\Statistics.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\TangentSpaceGenerator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\Tessellator.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\TransformAttributeFunctor.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\TransformCallback.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\TriStripVisitor.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgUtil\UpdateVisitor.cpp -# End Source File - -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/VisualStudio/osgWrappers/osgViewer/wrapper_osgViewer.dsp b/VisualStudio/osgWrappers/osgViewer/wrapper_osgViewer.dsp deleted file mode 100644 index 1ca6a469e..000000000 --- a/VisualStudio/osgWrappers/osgViewer/wrapper_osgViewer.dsp +++ /dev/null @@ -1,141 +0,0 @@ -# Microsoft Developer Studio Project File - Name="osgWrapper osgViewer" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=osgWrapper osgViewer - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgViewer.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "wrapper_osgViewer.mak" CFG="osgWrapper osgViewer - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "osgWrapper osgViewer - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "osgWrapper osgViewer - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "osgWrapper osgViewer - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /opt:ref /opt:icf /out:"$(OutDir)/osgwrapper_osgViewer.dll" /implib:"../../../lib/$(PlatformName)/osgwrapper_osgViewer.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /nodefaultlib - -!ELSEIF "$(CFG)" == "osgWrapper osgViewer - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../bin/$(PlatformName)" -# PROP Intermediate_Dir "$(PlatformName)/$(ConfigurationName)" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /vmg /GR /GX /Zi /Od /I "../../../include" /I "../../../../OpenThreads/include" /I "../../../../3rdParty/include" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D "_CRT_SECURE_NO_DEPRECATE" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 opengl32.lib OpenThreadsWin32d.lib /nologo /dll /debug /machine:I386 /nodefaultlib:"LIBC" /out:"$(OutDir)/osgwrapper_osgViewerd.dll" /pdbtype:sept /implib:"../../../lib/$(PlatformName)/osgwrapper_osgViewerd.lib" /libpath:"../../../lib/$(PlatformName)" /libpath:"../../../../OpenThreads/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib/$(PlatformName)" /libpath:"../../../../3rdParty/lib" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ENDIF - -# Begin Target - -# Name "osgWrapper osgViewer - Win32 Release" -# Name "osgWrapper osgViewer - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgViewer\CompositeViewer.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgViewer\GraphicsWindow.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgViewer\HelpHandler.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgViewer\Scene.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgViewer\SimpleViewer.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgViewer\StatsHandler.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgViewer\View.cpp -# End Source File - -# Begin Source File -SOURCE=..\..\..\src\osgWrappers\osgViewer\Viewer.cpp -# End Source File - -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project - diff --git a/applications/GNUmakefile b/applications/GNUmakefile deleted file mode 100644 index c34412b4f..000000000 --- a/applications/GNUmakefile +++ /dev/null @@ -1,7 +0,0 @@ -TOPDIR = .. -include $(TOPDIR)/Make/makedefs -include $(TOPDIR)/Make/makedirdefs - -DIRS = $(APPLICATION_DIRS) - -include $(TOPDIR)/Make/makedirrules diff --git a/applications/osgarchive/GNUmakefile b/applications/osgarchive/GNUmakefile deleted file mode 100644 index fdeb1bb21..000000000 --- a/applications/osgarchive/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgarchive.cpp\ - -LIBS += -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgarchive - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/applications/osgconv/GNUmakefile b/applications/osgconv/GNUmakefile deleted file mode 100644 index 3e4a3b195..000000000 --- a/applications/osgconv/GNUmakefile +++ /dev/null @@ -1,22 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - OrientationConverter.cpp\ - osgconv.cpp\ - -HEADERFILES = \ - OrientationConverter.h - -LIBS += -losgViewer -losgText -losg -losgUtil -losgGA -losgDB $(GL_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - $(HEADERFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgconv - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/applications/osgversion/GNUmakefile b/applications/osgversion/GNUmakefile deleted file mode 100755 index b3f66c588..000000000 --- a/applications/osgversion/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgversion.cpp\ - -LIBS += -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgversion - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/applications/osgviewer/GNUmakefile b/applications/osgviewer/GNUmakefile deleted file mode 100644 index 3c4db770e..000000000 --- a/applications/osgviewer/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgviewer.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgviewer - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/dist/Irix/GNUmakefile b/dist/Irix/GNUmakefile deleted file mode 100644 index 201c0d515..000000000 --- a/dist/Irix/GNUmakefile +++ /dev/null @@ -1,16 +0,0 @@ -SHELL = /bin/sh - - -all : irixdist tardist - - -irixdist : - cd ${OSGHOME}; [ -d irixdist ] || mkdir irixdist - cd ${OSGHOME}; \ - /usr/sbin/gendist -sbase ${OSGHOME} -idb dist/Irix/osg.idb -spec dist/Irix/osg.spec -dist irixdist -all - - -tardist : irixdist - cd ${OSGHOME}/irixdist;\ - tar cvf osg.tardist osg osg.idb osg.sw - diff --git a/dist/Irix/Makefile b/dist/Irix/Makefile deleted file mode 100644 index 139597f9c..000000000 --- a/dist/Irix/Makefile +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/dist/Irix/osg.idb b/dist/Irix/osg.idb deleted file mode 100644 index 76eb36b06..000000000 --- a/dist/Irix/osg.idb +++ /dev/null @@ -1,80 +0,0 @@ -f 0755 root sys usr/bin/sgv bin/sgv osg.sw.base -d 0755 root sys usr/include/osg include/osg osg.sw.base -f 0666 root sys usr/include/osg/AlphaFunc include/osg/AlphaFunc osg.sw.base -f 0666 root sys usr/include/osg/Billboard include/osg/Billboard osg.sw.base -f 0666 root sys usr/include/osg/BoundingBox include/osg/BoundingBox osg.sw.base -f 0666 root sys usr/include/osg/BoundingSphere include/osg/BoundingSphere osg.sw.base -f 0666 root sys usr/include/osg/Camera include/osg/Camera osg.sw.base -f 0666 root sys usr/include/osg/CullFace include/osg/CullFace osg.sw.base -f 0666 root sys usr/include/osg/DCS include/osg/DCS osg.sw.base -f 0666 root sys usr/include/osg/DynamicLibrary include/osg/DynamicLibrary osg.sw.base -f 0666 root sys usr/include/osg/Export include/osg/Export osg.sw.base -f 0666 root sys usr/include/osg/ExtensionSupported include/osg/ExtensionSupported osg.sw.base -f 0666 root sys usr/include/osg/Field include/osg/Field osg.sw.base -f 0666 root sys usr/include/osg/FieldReader include/osg/FieldReader osg.sw.base -f 0666 root sys usr/include/osg/FieldReaderIterator include/osg/FieldReaderIterator osg.sw.base -f 0666 root sys usr/include/osg/FileNameUtils include/osg/FileNameUtils osg.sw.base -f 0666 root sys usr/include/osg/Fog include/osg/Fog osg.sw.base -f 0666 root sys usr/include/osg/GL include/osg/GL osg.sw.base -f 0666 root sys usr/include/osg/GeoSet include/osg/GeoSet osg.sw.base -f 0666 root sys usr/include/osg/GeoState include/osg/GeoState osg.sw.base -f 0666 root sys usr/include/osg/Geode include/osg/Geode osg.sw.base -f 0666 root sys usr/include/osg/Group include/osg/Group osg.sw.base -f 0666 root sys usr/include/osg/Image include/osg/Image osg.sw.base -f 0666 root sys usr/include/osg/Input include/osg/Input osg.sw.base -f 0666 root sys usr/include/osg/LOD include/osg/LOD osg.sw.base -f 0666 root sys usr/include/osg/Light include/osg/Light osg.sw.base -f 0666 root sys usr/include/osg/LightSource include/osg/LightSource osg.sw.base -f 0666 root sys usr/include/osg/Lighting include/osg/Lighting osg.sw.base -f 0666 root sys usr/include/osg/Material include/osg/Material osg.sw.base -f 0666 root sys usr/include/osg/Matrix include/osg/Matrix osg.sw.base -f 0666 root sys usr/include/osg/Node include/osg/Node osg.sw.base -f 0666 root sys usr/include/osg/NodeVisitor include/osg/NodeVisitor osg.sw.base -f 0666 root sys usr/include/osg/Notify include/osg/Notify osg.sw.base -f 0666 root sys usr/include/osg/OSG include/osg/OSG osg.sw.base -f 0666 root sys usr/include/osg/Object include/osg/Object osg.sw.base -f 0666 root sys usr/include/osg/Output include/osg/Output osg.sw.base -f 0666 root sys usr/include/osg/Point include/osg/Point osg.sw.base -f 0666 root sys usr/include/osg/PolygonOffset include/osg/PolygonOffset osg.sw.base -f 0666 root sys usr/include/osg/Quat include/osg/Quat osg.sw.base -f 0666 root sys usr/include/osg/Referenced include/osg/Referenced osg.sw.base -f 0666 root sys usr/include/osg/Registry include/osg/Registry osg.sw.base -f 0666 root sys usr/include/osg/Scene include/osg/Scene osg.sw.base -f 0666 root sys usr/include/osg/Seg include/osg/Seg osg.sw.base -f 0666 root sys usr/include/osg/Sequence include/osg/Sequence osg.sw.base -f 0666 root sys usr/include/osg/State include/osg/State osg.sw.base -f 0666 root sys usr/include/osg/Switch include/osg/Switch osg.sw.base -f 0666 root sys usr/include/osg/TexEnv include/osg/TexEnv osg.sw.base -f 0666 root sys usr/include/osg/TexGen include/osg/TexGen osg.sw.base -f 0666 root sys usr/include/osg/TexMat include/osg/TexMat osg.sw.base -f 0666 root sys usr/include/osg/Texture include/osg/Texture osg.sw.base -f 0666 root sys usr/include/osg/Timer include/osg/Timer osg.sw.base -f 0666 root sys usr/include/osg/Transparency include/osg/Transparency osg.sw.base -f 0666 root sys usr/include/osg/Types include/osg/Types osg.sw.base -f 0666 root sys usr/include/osg/Vec2 include/osg/Vec2 osg.sw.base -f 0666 root sys usr/include/osg/Vec3 include/osg/Vec3 osg.sw.base -f 0666 root sys usr/include/osg/Vec4 include/osg/Vec4 osg.sw.base -f 0666 root sys usr/include/osg/Version include/osg/Version osg.sw.base -d 0750 root sys usr/include/osgUtil include/osgUtil osg.sw.base -f 0666 root sys usr/include/osgUtil/CameraManipulator include/osgUtil/CameraManipulator osg.sw.base -f 0666 root sys usr/include/osgUtil/DisplayListVisitor include/osgUtil/DisplayListVisitor osg.sw.base -f 0666 root sys usr/include/osgUtil/DriveManipulator include/osgUtil/DriveManipulator osg.sw.base -f 0666 root sys usr/include/osgUtil/Export include/osgUtil/Export osg.sw.base -f 0666 root sys usr/include/osgUtil/FlightManipulator include/osgUtil/FlightManipulator osg.sw.base -f 0666 root sys usr/include/osgUtil/GUIActionAdapter include/osgUtil/GUIActionAdapter osg.sw.base -f 0666 root sys usr/include/osgUtil/GUIEventAdapter include/osgUtil/GUIEventAdapter osg.sw.base -f 0666 root sys usr/include/osgUtil/IntersectVisitor include/osgUtil/IntersectVisitor osg.sw.base -f 0666 root sys usr/include/osgUtil/RenderVisitor include/osgUtil/RenderVisitor osg.sw.base -f 0666 root sys usr/include/osgUtil/SceneView include/osgUtil/SceneView osg.sw.base -f 0666 root sys usr/include/osgUtil/TrackballManipulator include/osgUtil/TrackballManipulator osg.sw.base -f 0666 root sys usr/include/osgUtil/Version include/osgUtil/Version osg.sw.base -f 0755 root sys usr/lib32/libosg.so lib/libosg.so osg.sw.base -f 0755 root sys usr/lib32/libosgUtil.so lib/libosgUtil.so osg.sw.base -d 0755 root sys usr/lib32/osgPlugins lib/osgPlugins osg.sw.base -f 0755 root sys usr/lib32/osgPlugins/osgdb_flt.so lib/osgPlugins/osgdb_flt.so osg.sw.base -f 0755 root sys usr/lib32/osgPlugins/osgdb_fly.so lib/osgPlugins/osgdb_fly.so osg.sw.base -f 0755 root sys usr/lib32/osgPlugins/osgdb_jpg.so lib/osgPlugins/osgdb_jpg.so osg.sw.base -f 0755 root sys usr/lib32/osgPlugins/osgdb_osgtgz.so lib/osgPlugins/osgdb_osgtgz.so osg.sw.base -f 0755 root sys usr/lib32/osgPlugins/osgdb_pic.so lib/osgPlugins/osgdb_pic.so osg.sw.base -f 0755 root sys usr/lib32/osgPlugins/osgdb_tga.so lib/osgPlugins/osgdb_tga.so osg.sw.base -f 0755 root sys usr/lib32/osgPlugins/osgdb_tif.so lib/osgPlugins/osgdb_tif.so osg.sw.base diff --git a/dist/Irix/osg.spec b/dist/Irix/osg.spec deleted file mode 100644 index aae09e0a4..000000000 --- a/dist/Irix/osg.spec +++ /dev/null @@ -1,13 +0,0 @@ -product osg - id "OpenSceneGraph" - image sw - id "Software" - version 1 - order 9999 - subsys base default - id "Base Software" - replaces self - exp osg.sw.base - endsubsys - endimage -endproduct diff --git a/dist/PKG/.README b/dist/PKG/.README deleted file mode 100644 index 140b7cd0f..000000000 --- a/dist/PKG/.README +++ /dev/null @@ -1 +0,0 @@ -Keep this file here so CVS won't remove the directory diff --git a/examples/GNUmakefile b/examples/GNUmakefile deleted file mode 100644 index efce8ed65..000000000 --- a/examples/GNUmakefile +++ /dev/null @@ -1,7 +0,0 @@ -TOPDIR = .. -include $(TOPDIR)/Make/makedefs -include $(TOPDIR)/Make/makedirdefs - -DIRS = $(EXAMPLE_DIRS) - -include $(TOPDIR)/Make/makedirrules diff --git a/examples/osgGLUTkeyboardmouse/GNUmakefile b/examples/osgGLUTkeyboardmouse/GNUmakefile deleted file mode 100644 index b4d76b67e..000000000 --- a/examples/osgGLUTkeyboardmouse/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgGLUTkeyboardmouse.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GLUT_LIBS) $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgGLUTkeyboardmouse - -INC += $(X_INC) -LDFLAGS += -L/usr/X11R6/lib - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgGLUTsimple/GNUmakefile b/examples/osgGLUTsimple/GNUmakefile deleted file mode 100644 index 769c02db1..000000000 --- a/examples/osgGLUTsimple/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgGLUTsimple.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GLUT_LIBS) $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgGLUTsimple - -INC += $(X_INC) -LDFLAGS += -L/usr/X11R6/lib - -include $(TOPDIR)/Make/makerules diff --git a/examples/osganimate/GNUmakefile b/examples/osganimate/GNUmakefile deleted file mode 100644 index e02b96063..000000000 --- a/examples/osganimate/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osganimate.cpp\ - -LIBS += -losgViewer -losgSim -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osganimate - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgautotransform/GNUmakefile b/examples/osgautotransform/GNUmakefile deleted file mode 100644 index eaa12b932..000000000 --- a/examples/osgautotransform/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgautotransform.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgautotransform - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgbillboard/GNUmakefile b/examples/osgbillboard/GNUmakefile deleted file mode 100644 index 30cd2b802..000000000 --- a/examples/osgbillboard/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgbillboard.cpp - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgbillboard - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgblendequation/GNUmakefile b/examples/osgblendequation/GNUmakefile deleted file mode 100644 index 5fec3da00..000000000 --- a/examples/osgblendequation/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgblendequation.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgblendequation - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgcallback/GNUmakefile b/examples/osgcallback/GNUmakefile deleted file mode 100644 index 4dd3f954f..000000000 --- a/examples/osgcallback/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgcallback.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgcallback - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgcamera/GNUmakefile b/examples/osgcamera/GNUmakefile deleted file mode 100644 index 5608e0e48..000000000 --- a/examples/osgcamera/GNUmakefile +++ /dev/null @@ -1,20 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgcamera.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) -lOpenThreads - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgcamera - -INC += $(X_INC) -#LDFLAGS += -L/usr/X11R6/lib - - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgcatch/GNUmakefile b/examples/osgcatch/GNUmakefile deleted file mode 100644 index 5cbe28d91..000000000 --- a/examples/osgcatch/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgcatch.cpp\ - -LIBS += -losgViewer -losgParticle -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgcatch - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgcegui/GNUmakefile b/examples/osgcegui/GNUmakefile deleted file mode 100644 index 0e550ebdc..000000000 --- a/examples/osgcegui/GNUmakefile +++ /dev/null @@ -1,20 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgcegui.cpp\ - -LIBS += -lCEGUIBase -lCEGUIOpenGLRenderer -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -INC += -I/usr/local/include/CEGUI - -EXEC = osgcegui - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgclip/GNUmakefile b/examples/osgclip/GNUmakefile deleted file mode 100644 index 5e81cb0f6..000000000 --- a/examples/osgclip/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgclip.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgclip - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgcluster/GNUmakefile b/examples/osgcluster/GNUmakefile deleted file mode 100644 index 8ffd7a35c..000000000 --- a/examples/osgcluster/GNUmakefile +++ /dev/null @@ -1,26 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - broadcaster.cpp\ - osgcluster.cpp\ - receiver.cpp\ - -HEADERFILES =\ - broadcaster.h\ - receiver.h\ - - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(SOCKET_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - $(HEADERFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgcluster - - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgcopy/GNUmakefile b/examples/osgcopy/GNUmakefile deleted file mode 100644 index d9bb45c12..000000000 --- a/examples/osgcopy/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgcopy.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgcopy - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgcubemap/GNUmakefile b/examples/osgcubemap/GNUmakefile deleted file mode 100644 index f79373926..000000000 --- a/examples/osgcubemap/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgcubemap.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgcubemap - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgdelaunay/GNUmakefile b/examples/osgdelaunay/GNUmakefile deleted file mode 100644 index 0a4678bf3..000000000 --- a/examples/osgdelaunay/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgdelaunay.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgdelaunay - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgdepthpartition/GNUmakefile b/examples/osgdepthpartition/GNUmakefile deleted file mode 100644 index 973f1942e..000000000 --- a/examples/osgdepthpartition/GNUmakefile +++ /dev/null @@ -1,20 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgdepthpartition.cpp\ - DepthPartitionNode.cpp\ - DistanceAccumulator.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgdepthpartition - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgdepthshadow/GNUmakefile b/examples/osgdepthshadow/GNUmakefile deleted file mode 100644 index e7ef61032..000000000 --- a/examples/osgdepthshadow/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgdepthshadow.cpp\ - -LIBS += -losgViewer -losgShadow -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgdepthshadow - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgdistortion/GNUmakefile b/examples/osgdistortion/GNUmakefile deleted file mode 100644 index 63e4a9083..000000000 --- a/examples/osgdistortion/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgdistortion.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgdistortion - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgfadetext/GNUmakefile b/examples/osgfadetext/GNUmakefile deleted file mode 100644 index 1200cbc17..000000000 --- a/examples/osgfadetext/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgfadetext.cpp\ - -LIBS += -losgFX -losgViewer -losgSim -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgfadetext - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgforest/GNUmakefile b/examples/osgforest/GNUmakefile deleted file mode 100644 index 120325e13..000000000 --- a/examples/osgforest/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgforest.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgforest - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgfxbrowser/GNUmakefile b/examples/osgfxbrowser/GNUmakefile deleted file mode 100644 index f6220051a..000000000 --- a/examples/osgfxbrowser/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgfxbrowser.cpp\ - Frame.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg -losgFX $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgfxbrowser - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osggeodemo/GNUmakefile b/examples/osggeodemo/GNUmakefile deleted file mode 100644 index 50bfb2121..000000000 --- a/examples/osggeodemo/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osggeodemo.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osggeodemo - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osggeometry/GNUmakefile b/examples/osggeometry/GNUmakefile deleted file mode 100644 index 14ad1b50d..000000000 --- a/examples/osggeometry/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osggeometry.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osggeometry - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osghangglide/GNUmakefile b/examples/osghangglide/GNUmakefile deleted file mode 100644 index 445d6c004..000000000 --- a/examples/osghangglide/GNUmakefile +++ /dev/null @@ -1,32 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - base.cpp\ - GliderManipulator.cpp\ - osghangglide.cpp\ - hat.cpp\ - sky.cpp\ - tank.cpp\ - terrain.cpp\ - trees.cpp\ - -HEADERFILES = \ - GliderManipulator.h\ - hat.h\ - terrain_coords.h\ - terrain_normals.h\ - terrain_texcoords.h\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - $(HEADERFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osghangglide - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osghud/GNUmakefile b/examples/osghud/GNUmakefile deleted file mode 100644 index 3bd097e27..000000000 --- a/examples/osghud/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osghud.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osghud - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgimpostor/GNUmakefile b/examples/osgimpostor/GNUmakefile deleted file mode 100644 index 7905f1f0c..000000000 --- a/examples/osgimpostor/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - TestManipulator.cpp\ - osgimpostor.cpp\ - -LIBS += -losgViewer -losgText -losgSim -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgimpostor - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgintersection/GNUmakefile b/examples/osgintersection/GNUmakefile deleted file mode 100644 index 8e8fb0ed7..000000000 --- a/examples/osgintersection/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgintersection.cpp\ - -LIBS += -losgText -losgSim -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgintersection - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgintrospection/GNUmakefile b/examples/osgintrospection/GNUmakefile deleted file mode 100644 index 82829c3f3..000000000 --- a/examples/osgintrospection/GNUmakefile +++ /dev/null @@ -1,16 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgintrospection.cpp\ - -LIBS += -losgIntrospection -losgDB -losgUtil -losg $(GL_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgintrospection - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgkeyboard/GNUmakefile b/examples/osgkeyboard/GNUmakefile deleted file mode 100644 index 8c54aa7b8..000000000 --- a/examples/osgkeyboard/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgkeyboard.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgkeyboard - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgkeyboardmouse/GNUmakefile b/examples/osgkeyboardmouse/GNUmakefile deleted file mode 100644 index c573ecbfe..000000000 --- a/examples/osgkeyboardmouse/GNUmakefile +++ /dev/null @@ -1,16 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgkeyboardmouse.cpp\ - -LIBS += -losgViewer -losgText -losgFX -losgGA -losgDB -losgUtil -losg $(X_LIBS) $(OTHER_LIBS) -lOpenThreads - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgkeyboardmouse - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osglauncher/GNUmakefile b/examples/osglauncher/GNUmakefile deleted file mode 100644 index 25d0ef795..000000000 --- a/examples/osglauncher/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osglauncher.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osglauncher - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osglight/GNUmakefile b/examples/osglight/GNUmakefile deleted file mode 100644 index 0cb259b4b..000000000 --- a/examples/osglight/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osglight.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osglight - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osglightpoint/GNUmakefile b/examples/osglightpoint/GNUmakefile deleted file mode 100644 index a1074ff46..000000000 --- a/examples/osglightpoint/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osglightpoint.cpp\ - -LIBS += -losgViewer -losgSim -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osglightpoint - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osglogicop/GNUmakefile b/examples/osglogicop/GNUmakefile deleted file mode 100644 index d8f145d55..000000000 --- a/examples/osglogicop/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osglogicop.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osglogicop - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osglogo/GNUmakefile b/examples/osglogo/GNUmakefile deleted file mode 100644 index ba32d11a6..000000000 --- a/examples/osglogo/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osglogo.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osglogo - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgmanipulator/GNUmakefile b/examples/osgmanipulator/GNUmakefile deleted file mode 100644 index 131042f2e..000000000 --- a/examples/osgmanipulator/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgmanipulator.cpp\ - -LIBS += -losgViewer -losgManipulator -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgmanipulator - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgmotionblur/GNUmakefile b/examples/osgmotionblur/GNUmakefile deleted file mode 100644 index d61744be7..000000000 --- a/examples/osgmotionblur/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgmotionblur.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgmotionblur - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgmovie/GNUmakefile b/examples/osgmovie/GNUmakefile deleted file mode 100644 index 4ba1885b3..000000000 --- a/examples/osgmovie/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgmovie.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgmovie - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgmultiplecameras/GNUmakefile b/examples/osgmultiplecameras/GNUmakefile deleted file mode 100644 index 74e2ee0db..000000000 --- a/examples/osgmultiplecameras/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgmultiplecameras.cpp\ - -LIBS += -losgViewer -losgFX -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgmultiplecameras - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgmultitexture/GNUmakefile b/examples/osgmultitexture/GNUmakefile deleted file mode 100644 index ce18d571a..000000000 --- a/examples/osgmultitexture/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgmultitexture.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgmultitexture - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgoccluder/GNUmakefile b/examples/osgoccluder/GNUmakefile deleted file mode 100644 index a2a8a3830..000000000 --- a/examples/osgoccluder/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgoccluder.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgoccluder - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgpagedlod/GNUmakefile b/examples/osgpagedlod/GNUmakefile deleted file mode 100644 index 9f29fb6e1..000000000 --- a/examples/osgpagedlod/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgpagedlod.cpp\ - -LIBS += -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgpagedlod - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgparametric/GNUmakefile b/examples/osgparametric/GNUmakefile deleted file mode 100644 index f6552da92..000000000 --- a/examples/osgparametric/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgparametric.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgparametric - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgparticle/GNUmakefile b/examples/osgparticle/GNUmakefile deleted file mode 100644 index 4afaad063..000000000 --- a/examples/osgparticle/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgparticle.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) -losgParticle - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgparticle - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgparticleeffects/GNUmakefile b/examples/osgparticleeffects/GNUmakefile deleted file mode 100644 index 11677ffbd..000000000 --- a/examples/osgparticleeffects/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgparticleeffects.cpp\ - -LIBS += -losgViewer -losgParticle -losgSim -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgparticleeffects - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgphotoalbum/GNUmakefile b/examples/osgphotoalbum/GNUmakefile deleted file mode 100644 index 91b362750..000000000 --- a/examples/osgphotoalbum/GNUmakefile +++ /dev/null @@ -1,20 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ImageReaderWriter.cpp\ - PhotoArchive.cpp\ - osgphotoalbum.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgphotoalbum - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgpick/GNUmakefile b/examples/osgpick/GNUmakefile deleted file mode 100644 index c078b6d2b..000000000 --- a/examples/osgpick/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgpick.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgpick - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgplanets/GNUmakefile b/examples/osgplanets/GNUmakefile deleted file mode 100644 index 2b34efe73..000000000 --- a/examples/osgplanets/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgplanets.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgplanets - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgpoints/GNUmakefile b/examples/osgpoints/GNUmakefile deleted file mode 100644 index e4bad10e2..000000000 --- a/examples/osgpoints/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgpoints.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgpoints - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgpointsprite/GNUmakefile b/examples/osgpointsprite/GNUmakefile deleted file mode 100644 index c1bba7386..000000000 --- a/examples/osgpointsprite/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgpointsprite.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgpointsprite - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgprecipitation/GNUmakefile b/examples/osgprecipitation/GNUmakefile deleted file mode 100644 index 597136aff..000000000 --- a/examples/osgprecipitation/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgprecipitation.cpp\ - -LIBS += -losgViewer -losgParticle -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgprecipitation - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgprerender/GNUmakefile b/examples/osgprerender/GNUmakefile deleted file mode 100644 index d84e265fd..000000000 --- a/examples/osgprerender/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgprerender.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgprerender - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgprerendercubemap/GNUmakefile b/examples/osgprerendercubemap/GNUmakefile deleted file mode 100644 index deb6e1611..000000000 --- a/examples/osgprerendercubemap/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgprerendercubemap.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgprerendercubemap - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgreflect/GNUmakefile b/examples/osgreflect/GNUmakefile deleted file mode 100644 index 070d4599c..000000000 --- a/examples/osgreflect/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgreflect.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgreflect - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgscalarbar/GNUmakefile b/examples/osgscalarbar/GNUmakefile deleted file mode 100644 index d062fb3d0..000000000 --- a/examples/osgscalarbar/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgscalarbar.cpp\ - -LIBS += -losgText -losgViewer -losgSim -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgscalarbar - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgscribe/GNUmakefile b/examples/osgscribe/GNUmakefile deleted file mode 100644 index ffba9b6a8..000000000 --- a/examples/osgscribe/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgscribe.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgscribe - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgsequence/GNUmakefile b/examples/osgsequence/GNUmakefile deleted file mode 100644 index 3059f7496..000000000 --- a/examples/osgsequence/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgsequence.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgsequence - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgshaders/GNUmakefile b/examples/osgshaders/GNUmakefile deleted file mode 100644 index 8cafe4142..000000000 --- a/examples/osgshaders/GNUmakefile +++ /dev/null @@ -1,20 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - GL2Scene.cpp \ - Noise.cpp \ - osgshaders.cpp - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgshaders - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgshaderterrain/GNUmakefile b/examples/osgshaderterrain/GNUmakefile deleted file mode 100644 index d9fcaeb63..000000000 --- a/examples/osgshaderterrain/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgshaderterrain.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgshaderterrain - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgshadow/GNUmakefile b/examples/osgshadow/GNUmakefile deleted file mode 100644 index 9e41ef91a..000000000 --- a/examples/osgshadow/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgshadow.cpp\ - -LIBS += -losgViewer -losgShadow -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgshadow - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgshadowtexture/GNUmakefile b/examples/osgshadowtexture/GNUmakefile deleted file mode 100644 index d429adea8..000000000 --- a/examples/osgshadowtexture/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - CreateShadowedScene.cpp\ - osgshadowtexture.cpp\ - -LIBS += -losgShadow -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgshadowtexture - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgshape/GNUmakefile b/examples/osgshape/GNUmakefile deleted file mode 100644 index 3e07d601b..000000000 --- a/examples/osgshape/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgshape.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgshape - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgsimple/GNUmakefile b/examples/osgsimple/GNUmakefile deleted file mode 100644 index b5233800f..000000000 --- a/examples/osgsimple/GNUmakefile +++ /dev/null @@ -1,16 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgsimple.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) -lOpenThreads - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgsimple - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgsimpleviewerFLTK/GNUmakefile b/examples/osgsimpleviewerFLTK/GNUmakefile deleted file mode 100644 index 96a7f8bc2..000000000 --- a/examples/osgsimpleviewerFLTK/GNUmakefile +++ /dev/null @@ -1,16 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgsimpleviewerFLTK.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg -lfltk -lfltk_gl $(GL_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgsimpleviewerFLTK - - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgsimpleviewerGLUT/GNUmakefile b/examples/osgsimpleviewerGLUT/GNUmakefile deleted file mode 100644 index b2bb0e675..000000000 --- a/examples/osgsimpleviewerGLUT/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgsimpleviewerGLUT.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GLUT_LIBS) $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgsimpleviewerGLUT - -INC += $(X_INC) -LDFLAGS += -L/usr/X11R6/lib - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgsimpleviewerQT3/GNUmakefile b/examples/osgsimpleviewerQT3/GNUmakefile deleted file mode 100644 index 96b566238..000000000 --- a/examples/osgsimpleviewerQT3/GNUmakefile +++ /dev/null @@ -1,23 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgsimpleviewerQT3.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg -lqt-mt $(GL_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgsimpleviewerQT3 - -INC += -I/usr/lib/qt3/include - -ifeq ($(ARCH),64) - LDFLAGS += -L/usr/lib/qt3/lib64 -else - LDFLAGS += -L/usr/lib/qt3/lib -endif - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgsimpleviewerQT4/GNUmakefile b/examples/osgsimpleviewerQT4/GNUmakefile deleted file mode 100644 index 1dbbf5082..000000000 --- a/examples/osgsimpleviewerQT4/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgsimpleviewerQT4.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg -lQtOpenGL -lQtGui -lQtCore $(GL_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgsimpleviewerQT4 - -INC += -I$(QT4_ROOT)/include -LDFLAGS += -L$(QT4_ROOT)/lib - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgsimpleviewerSDL/GNUmakefile b/examples/osgsimpleviewerSDL/GNUmakefile deleted file mode 100644 index 363951f8f..000000000 --- a/examples/osgsimpleviewerSDL/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgsimpleviewerSDL.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg `sdl-config --libs` $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgsimpleviewerSDL - -INC += $(X_INC) `sdl-config --cflags` - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgsimplifier/GNUmakefile b/examples/osgsimplifier/GNUmakefile deleted file mode 100644 index b175e4b7b..000000000 --- a/examples/osgsimplifier/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgsimplifier.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgsimplifier - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgsimulation/GNUmakefile b/examples/osgsimulation/GNUmakefile deleted file mode 100644 index 77137b446..000000000 --- a/examples/osgsimulation/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgsimulation.cpp\ - -LIBS += -losgViewer -losgFX -losgParticle -losgSim -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgsimulation - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgslice/GNUmakefile b/examples/osgslice/GNUmakefile deleted file mode 100644 index 10f14c364..000000000 --- a/examples/osgslice/GNUmakefile +++ /dev/null @@ -1,19 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgslice.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) -lOpenThreads - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgslice - -INC += $(X_INC) -LDFLAGS += -L/usr/X11R6/lib - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgspacewarp/GNUmakefile b/examples/osgspacewarp/GNUmakefile deleted file mode 100644 index 281cecf73..000000000 --- a/examples/osgspacewarp/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgspacewarp.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgspacewarp - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgspheresegment/GNUmakefile b/examples/osgspheresegment/GNUmakefile deleted file mode 100644 index a1ce2cbe4..000000000 --- a/examples/osgspheresegment/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgspheresegment.cpp\ - -LIBS += -losgViewer -losgParticle -losgSim -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgspheresegment - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgspotlight/GNUmakefile b/examples/osgspotlight/GNUmakefile deleted file mode 100644 index f1c323386..000000000 --- a/examples/osgspotlight/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgspotlight.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgspotlight - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgstereoimage/GNUmakefile b/examples/osgstereoimage/GNUmakefile deleted file mode 100644 index 8a8d983b2..000000000 --- a/examples/osgstereoimage/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgstereoimage.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgstereoimage - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgteapot/GNUmakefile b/examples/osgteapot/GNUmakefile deleted file mode 100644 index ab6640a6f..000000000 --- a/examples/osgteapot/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgteapot.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgteapot - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgtessellate/GNUmakefile b/examples/osgtessellate/GNUmakefile deleted file mode 100644 index e61fc7f6a..000000000 --- a/examples/osgtessellate/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgtessellate.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgtessellate - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgtext/GNUmakefile b/examples/osgtext/GNUmakefile deleted file mode 100644 index b4a10ec06..000000000 --- a/examples/osgtext/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgtext.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgtext - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgtexture1D/GNUmakefile b/examples/osgtexture1D/GNUmakefile deleted file mode 100644 index 57ae3dc9b..000000000 --- a/examples/osgtexture1D/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgtexture1D.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgtexture1D - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgtexture2D/GNUmakefile b/examples/osgtexture2D/GNUmakefile deleted file mode 100644 index 1688ee3e1..000000000 --- a/examples/osgtexture2D/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgtexture2D.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgtexture2D - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgtexture3D/GNUmakefile b/examples/osgtexture3D/GNUmakefile deleted file mode 100644 index af1d838ab..000000000 --- a/examples/osgtexture3D/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgtexture3D.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgtexture3D - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgtexturerectangle/GNUmakefile b/examples/osgtexturerectangle/GNUmakefile deleted file mode 100644 index aa5104570..000000000 --- a/examples/osgtexturerectangle/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgtexturerectangle.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgtexturerectangle - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgunittests/GNUmakefile b/examples/osgunittests/GNUmakefile deleted file mode 100644 index b1b36951d..000000000 --- a/examples/osgunittests/GNUmakefile +++ /dev/null @@ -1,21 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - performance.cpp\ - UnitTestFramework.cpp\ - UnitTests_osg.cpp\ - osgunittests.cpp\ - -LIBS += -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgunittests - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/examples/osgvertexprogram/GNUmakefile b/examples/osgvertexprogram/GNUmakefile deleted file mode 100644 index 31df9fd4f..000000000 --- a/examples/osgvertexprogram/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgvertexprogram.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgvertexprogram - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgvolume/GNUmakefile b/examples/osgvolume/GNUmakefile deleted file mode 100644 index a71cd99b5..000000000 --- a/examples/osgvolume/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgvolume.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgvolume - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules diff --git a/examples/osgwindows/GNUmakefile b/examples/osgwindows/GNUmakefile deleted file mode 100644 index bec98c341..000000000 --- a/examples/osgwindows/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - osgwindows.cpp\ - -LIBS += -losgViewer -losgText -losgGA -losgDB -losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS) - -INSTFILES = \ - $(CXXFILES)\ - GNUmakefile.inst=GNUmakefile - -EXEC = osgwindows - -INC += $(X_INC) - -include $(TOPDIR)/Make/makerules - diff --git a/src/GNUmakefile b/src/GNUmakefile deleted file mode 100644 index 8d65fea1e..000000000 --- a/src/GNUmakefile +++ /dev/null @@ -1,7 +0,0 @@ -TOPDIR = .. -include $(TOPDIR)/Make/makedefs -include $(TOPDIR)/Make/makedirdefs - -DIRS = $(SRC_DIRS) - -include $(TOPDIR)/Make/makedirrules diff --git a/src/osg/GNUmakefile b/src/osg/GNUmakefile deleted file mode 100644 index 9201c0d18..000000000 --- a/src/osg/GNUmakefile +++ /dev/null @@ -1,132 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - AlphaFunc.cpp\ - AnimationPath.cpp\ - ApplicationUsage.cpp\ - ArgumentParser.cpp\ - Array.cpp\ - AutoTransform.cpp\ - Billboard.cpp\ - BlendColor.cpp\ - BlendEquation.cpp\ - BlendFunc.cpp\ - BoundingBox.cpp\ - BoundingSphere.cpp\ - BufferObject.cpp\ - Camera.cpp\ - CameraView.cpp\ - ClearNode.cpp\ - ClipNode.cpp\ - ClipPlane.cpp\ - ClampColor.cpp\ - ClusterCullingCallback.cpp\ - CollectOccludersVisitor.cpp\ - ColorMask.cpp\ - ColorMatrix.cpp\ - ComputeBoundsVisitor.cpp\ - ConvexPlanarOccluder.cpp\ - ConvexPlanarPolygon.cpp\ - CoordinateSystemNode.cpp\ - CopyOp.cpp\ - CullFace.cpp\ - CullingSet.cpp\ - CullSettings.cpp\ - CullStack.cpp\ - DeleteHandler.cpp\ - Depth.cpp\ - DisplaySettings.cpp\ - Drawable.cpp\ - DrawPixels.cpp\ - dxtctool.cpp\ - Fog.cpp\ - FragmentProgram.cpp\ - FrameStamp.cpp\ - FrameBufferObject.cpp\ - FrontFace.cpp\ - Geode.cpp\ - Geometry.cpp\ - GLExtensions.cpp\ - GraphicsContext.cpp\ - GraphicsThread.cpp\ - Group.cpp\ - Image.cpp\ - ImageStream.cpp\ - Light.cpp\ - LightModel.cpp\ - LightSource.cpp\ - LineSegment.cpp\ - LineStipple.cpp\ - LineWidth.cpp\ - LOD.cpp\ - LogicOp.cpp\ - Material.cpp\ - Matrixd.cpp\ - Matrixf.cpp\ - MatrixDecomposition.cpp\ - MatrixTransform.cpp\ - Multisample.cpp\ - NodeCallback.cpp\ - NodeTrackerCallback.cpp\ - Node.cpp\ - NodeVisitor.cpp\ - Notify.cpp\ - Object.cpp\ - OccluderNode.cpp\ - PagedLOD.cpp\ - Point.cpp\ - PointSprite.cpp\ - PolygonMode.cpp\ - PolygonOffset.cpp\ - PolygonStipple.cpp\ - PositionAttitudeTransform.cpp\ - PrimitiveSet.cpp\ - Program.cpp\ - Projection.cpp\ - ProxyNode.cpp\ - Quat.cpp\ - Referenced.cpp\ - Scissor.cpp\ - Sequence.cpp\ - ShadeModel.cpp\ - Shader.cpp\ - ShadowVolumeOccluder.cpp\ - Shape.cpp\ - ShapeDrawable.cpp\ - State.cpp\ - Stats.cpp\ - StateAttribute.cpp\ - StateSet.cpp\ - Stencil.cpp\ - StencilTwoSided.cpp\ - Switch.cpp\ - TexEnvCombine.cpp\ - TexEnv.cpp\ - TexEnvFilter.cpp\ - TexGen.cpp\ - TexGenNode.cpp\ - TexMat.cpp\ - Texture1D.cpp\ - Texture2D.cpp\ - Texture3D.cpp\ - Texture.cpp\ - TextureCubeMap.cpp\ - TextureRectangle.cpp\ - TransferFunction.cpp\ - Timer.cpp\ - Transform.cpp\ - Uniform.cpp\ - Version.cpp\ - VertexProgram.cpp\ - View.cpp\ - Viewport.cpp\ - -DEF += -DOSG_LIBRARY - -LIBS += $(GL_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = osg -LIB = $(LIB_PREFIX)$(TARGET_BASENAME).$(LIB_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgDB/GNUmakefile b/src/osgDB/GNUmakefile deleted file mode 100644 index d914f5502..000000000 --- a/src/osgDB/GNUmakefile +++ /dev/null @@ -1,45 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - Archive.cpp\ - DatabasePager.cpp\ - DynamicLibrary.cpp\ - FileNameUtils.cpp\ - FileUtils.cpp\ - ReadFile.cpp\ - ReaderWriter.cpp\ - Registry.cpp\ - Version.cpp\ - WriteFile.cpp\ - ImageOptions.cpp\ - Input.cpp\ - Output.cpp\ - Field.cpp\ - FieldReader.cpp\ - FieldReaderIterator.cpp\ - DotOsgWrapper.cpp\ - SharedStateManager.cpp\ - - -LIBS += -losg $(GL_LIBS) $(OTHER_LIBS) $(DYNAMICLIBRARYLIB) - -ifeq ($(OS),Darwin) -LIBS += ${CARBON_LIB} -endif - -ifeq ($(DARWIN_QUICKTIME),yes) - DEF+= -DDARWIN_QUICKTIME -endif - -ifeq ($(XINE_INSTALLED),yes) - DEF+= -DUSE_XINE -endif - - -DEF += -DOSGDB_LIBRARY - -TARGET_BASENAME = osgDB -LIB = $(LIB_PREFIX)$(TARGET_BASENAME).$(LIB_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgFX/GNUmakefile b/src/osgFX/GNUmakefile deleted file mode 100644 index 9817740ff..000000000 --- a/src/osgFX/GNUmakefile +++ /dev/null @@ -1,23 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - AnisotropicLighting.cpp\ - BumpMapping.cpp\ - Cartoon.cpp\ - Effect.cpp\ - MultiTextureControl.cpp\ - Registry.cpp\ - Scribe.cpp\ - SpecularHighlights.cpp\ - Technique.cpp\ - Validator.cpp\ - -LIBS += -losg -losgDB -losgUtil $(GL_LIBS) $(OTHER_LIBS) $(DYNAMICLIBRARYLIB) - -DEF += -DOSGFX_LIBRARY - -TARGET_BASENAME = osgFX -LIB = $(LIB_PREFIX)$(TARGET_BASENAME).$(LIB_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgGA/GNUmakefile b/src/osgGA/GNUmakefile deleted file mode 100644 index 848136630..000000000 --- a/src/osgGA/GNUmakefile +++ /dev/null @@ -1,29 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - - -CXXFILES = \ - AnimationPathManipulator.cpp\ - MatrixManipulator.cpp\ - DriveManipulator.cpp\ - EventVisitor.cpp\ - FlightManipulator.cpp\ - UFOManipulator.cpp\ - EventQueue.cpp\ - GUIEventAdapter.cpp\ - GUIEventHandler.cpp\ - KeySwitchMatrixManipulator.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 diff --git a/src/osgIntrospection/GNUmakefile b/src/osgIntrospection/GNUmakefile deleted file mode 100644 index f0afe3c0e..000000000 --- a/src/osgIntrospection/GNUmakefile +++ /dev/null @@ -1,23 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ConstructorInfo.cpp\ - CustomAttributeProvider.cpp\ - DefaultReflectors.cpp\ - MethodInfo.cpp\ - PropertyInfo.cpp\ - Reflection.cpp\ - Reflector.cpp\ - Type.cpp\ - Utility.cpp\ - Value.cpp\ - - -LIBS += $(OTHER_LIBS) $(DYNAMICLIBRARYLIB) -DEF += -DOSGINTROSPECTION_LIBRARY - -TARGET_BASENAME = osgIntrospection -LIB = $(LIB_PREFIX)$(TARGET_BASENAME).$(LIB_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgManipulator/GNUmakefile b/src/osgManipulator/GNUmakefile deleted file mode 100644 index a17c628d5..000000000 --- a/src/osgManipulator/GNUmakefile +++ /dev/null @@ -1,37 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - - -CXXFILES = \ - AntiSquish.cpp \ - Command.cpp \ - CommandManager.cpp \ - Constraint.cpp \ - Dragger.cpp \ - Projector.cpp \ - RotateCylinderDragger.cpp \ - RotateSphereDragger.cpp \ - Scale1DDragger.cpp \ - Scale2DDragger.cpp \ - ScaleAxisDragger.cpp \ - Selection.cpp \ - TabBoxDragger.cpp \ - TabPlaneDragger.cpp \ - TabPlaneTrackballDragger.cpp \ - TrackballDragger.cpp \ - Translate1DDragger.cpp \ - Translate2DDragger.cpp \ - TranslateAxisDragger.cpp \ - TranslatePlaneDragger.cpp - -DEF += -DOSGMANIPULATOR_LIBRARY - -INC += -LIBS += -losgGA -losgUtil -losg $(GL_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = osgManipulator - -LIB = $(LIB_PREFIX)$(TARGET_BASENAME).$(LIB_EXT) - -include $(TOPDIR)/Make/makerules - diff --git a/src/osgParticle/GNUmakefile b/src/osgParticle/GNUmakefile deleted file mode 100644 index 993c3236d..000000000 --- a/src/osgParticle/GNUmakefile +++ /dev/null @@ -1,33 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - Emitter.cpp\ - ExplosionEffect.cpp\ - ExplosionDebrisEffect.cpp\ - SmokeEffect.cpp\ - SmokeTrailEffect.cpp\ - FireEffect.cpp\ - FluidFrictionOperator.cpp\ - FluidProgram.cpp\ - ModularEmitter.cpp\ - ModularProgram.cpp\ - MultiSegmentPlacer.cpp\ - Particle.cpp\ - ParticleEffect.cpp\ - ParticleProcessor.cpp\ - ParticleSystem.cpp\ - PrecipitationEffect.cpp\ - ConnectedParticleSystem.cpp\ - ParticleSystemUpdater.cpp\ - Program.cpp\ - Version.cpp\ - - -LIBS += -losg -losgDB -losgUtil $(GL_LIBS) $(OTHER_LIBS) $(DYNAMICLIBRARYLIB) -DEF += -DOSGPARTICLE_LIBRARY - -TARGET_BASENAME = osgParticle -LIB = $(LIB_PREFIX)$(TARGET_BASENAME).$(LIB_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/3dc/GNUmakefile b/src/osgPlugins/3dc/GNUmakefile deleted file mode 100644 index 5b3356e47..000000000 --- a/src/osgPlugins/3dc/GNUmakefile +++ /dev/null @@ -1,13 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriter3DC.cpp\ - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = 3dc -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/3ds/GNUmakefile b/src/osgPlugins/3ds/GNUmakefile deleted file mode 100644 index 45a3bdf0c..000000000 --- a/src/osgPlugins/3ds/GNUmakefile +++ /dev/null @@ -1,35 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - atmosphere.cpp \ - chunk.cpp \ - lib3ds_float.cpp \ - matrix.cpp \ - quat.cpp \ - tcb.cpp \ - viewport.cpp \ - background.cpp \ - ease.cpp \ - light.cpp \ - mesh.cpp \ - readwrite.cpp \ - tracks.cpp \ - camera.cpp \ - file.cpp \ - material.cpp \ - node.cpp \ - shadow.cpp \ - vector.cpp \ - ReaderWriter3DS.cpp\ - - -INC += -I$(THISDIR) - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = 3ds -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/GNUmakefile b/src/osgPlugins/GNUmakefile deleted file mode 100644 index 586c2d21a..000000000 --- a/src/osgPlugins/GNUmakefile +++ /dev/null @@ -1,7 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs -include $(TOPDIR)/Make/makedirdefs - -DIRS = $(PLUGIN_DIRS) - -include $(TOPDIR)/Make/makedirrules diff --git a/src/osgPlugins/Inventor/GNUmakefile b/src/osgPlugins/Inventor/GNUmakefile deleted file mode 100644 index a8a0f62be..000000000 --- a/src/osgPlugins/Inventor/GNUmakefile +++ /dev/null @@ -1,24 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterIV.cpp \ - ConvertFromInventor.cpp \ - PendulumCallback.cpp \ - ShuttleCallback.cpp \ - GroupSoLOD.cpp - -ifeq ($(COIN_INSTALLED),yes) - INVENTOR_LIB = -lCoin -else - INVENTOR_LIB = -lInventor -endif - -INC += -I$(THISDIR) $(INVENTOR_INCLUDE) -LIBS += $(OSG_LIBS) $(OTHER_LIBS) $(INVENTOR_LIB_DIR) $(INVENTOR_LIB) -TARGET_BASENAME = iv - -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/OpenFlight/GNUmakefile b/src/osgPlugins/OpenFlight/GNUmakefile deleted file mode 100644 index 6f4c3c2cf..000000000 --- a/src/osgPlugins/OpenFlight/GNUmakefile +++ /dev/null @@ -1,34 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - AncillaryRecords.cpp \ - AttrData.cpp \ - ControlRecords.cpp \ - DataInputStream.cpp \ - Document.cpp \ - GeometryRecords.cpp \ - LightPointRecords.cpp \ - PaletteRecords.cpp \ - Pools.cpp \ - PrimaryRecords.cpp \ - ReaderWriterATTR.cpp \ - ReaderWriterFLT.cpp \ - Record.cpp \ - RecordInputStream.cpp \ - Registry.cpp \ - ReservedRecords.cpp \ - RoadRecords.cpp \ - Vertex.cpp \ - VertexRecords.cpp \ - - -INC += -I$(THISDIR) - -LIBS += -losgSim -losgText $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = OpenFlight -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/ac/GNUmakefile b/src/osgPlugins/ac/GNUmakefile deleted file mode 100644 index acc4a6b8a..000000000 --- a/src/osgPlugins/ac/GNUmakefile +++ /dev/null @@ -1,15 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - Exception.cpp\ - Geode.cpp\ - ac3d.cpp\ - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = ac -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/bmp/GNUmakefile b/src/osgPlugins/bmp/GNUmakefile deleted file mode 100644 index 6ea05b1b4..000000000 --- a/src/osgPlugins/bmp/GNUmakefile +++ /dev/null @@ -1,13 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterBMP.cpp\ - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = bmp -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/bsp/GNUmakefile b/src/osgPlugins/bsp/GNUmakefile deleted file mode 100644 index 34811eedf..000000000 --- a/src/osgPlugins/bsp/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - BITSET.cpp\ - BSPLoad.cpp\ - ReaderWriterQ3BSP.cpp\ - - -INC += -I$(THISDIR) - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = bsp -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/dae/GNUmakefile b/src/osgPlugins/dae/GNUmakefile deleted file mode 100644 index 068596d0c..000000000 --- a/src/osgPlugins/dae/GNUmakefile +++ /dev/null @@ -1,37 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - domSourceReader.cpp \ - daeRMaterials.cpp \ - daeRTransforms.cpp \ - daeRGeometry.cpp \ - daeRSceneObjects.cpp \ - daeReader.cpp \ - daeWGeometry.cpp \ - daeWMaterials.cpp \ - daeWTransforms.cpp \ - daeWSceneObjects.cpp \ - daeWriter.cpp \ - ReaderWriterDAE.cpp - -COLLADA_DAE_HOME ?= ${HOME}/3rdParty/collada/trunk -COLLADA_DAE_INCLUDES = -I$(COLLADA_DAE_HOME)/include -I$(COLLADA_DAE_HOME)/include/1.4 - -ifeq ($(COLLADA_DEBUG_LIBS),yes) - COLLADA_DAE_LIBS = -L$(COLLADA_DAE_HOME)/lib-dbg -else - COLLADA_DAE_LIBS = -L$(COLLADA_DAE_HOME)/lib -endif - -COLLADA_DAE_LIBS += -lcollada_dae -lcollada_dom -lcollada_dae -lcollada_STLDatabase -lcollada_LIBXMLPlugin -lcollada_stdErrPlugin -lxml2 - -INC += $(COLLADA_DAE_INCLUDES) -I$(THISDIR) - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) $(COLLADA_DAE_LIBS) - -TARGET_BASENAME = dae -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/dds/GNUmakefile b/src/osgPlugins/dds/GNUmakefile deleted file mode 100644 index b68cdf083..000000000 --- a/src/osgPlugins/dds/GNUmakefile +++ /dev/null @@ -1,13 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterDDS.cpp\ - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = dds -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/dw/GNUmakefile b/src/osgPlugins/dw/GNUmakefile deleted file mode 100644 index f29883226..000000000 --- a/src/osgPlugins/dw/GNUmakefile +++ /dev/null @@ -1,13 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterDW.cpp\ - -LIBS += $(OSG_LIBS) $(GL_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = dw -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/dxf/GNUmakefile b/src/osgPlugins/dxf/GNUmakefile deleted file mode 100644 index b5a228858..000000000 --- a/src/osgPlugins/dxf/GNUmakefile +++ /dev/null @@ -1,24 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - aci.cpp\ - dxfBlock.cpp\ - dxfEntity.cpp\ - dxfFile.cpp\ - dxfReader.cpp\ - dxfSection.cpp\ - dxfTable.cpp\ - ReaderWriterDXF.cpp\ - scene.cpp\ - - -INC += -I$(THISDIR) - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = dxf -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/freetype/GNUmakefile b/src/osgPlugins/freetype/GNUmakefile deleted file mode 100644 index d7bc95dc8..000000000 --- a/src/osgPlugins/freetype/GNUmakefile +++ /dev/null @@ -1,18 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - FreeTypeLibrary.cpp\ - FreeTypeFont.cpp\ - ReaderWriterFreeType.cpp\ - -INC += $(FREETYPE_INCLUDE) - -LIBS += -losgText -losg -losgDB $(FREETYPE_LIB) $(OTHER_LIBS) - - -TARGET_BASENAME = freetype -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/geo/GNUmakefile b/src/osgPlugins/geo/GNUmakefile deleted file mode 100644 index a51a3929c..000000000 --- a/src/osgPlugins/geo/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - geoActions.cpp\ - ClipRegion.cpp\ - ReaderWriterGEO.cpp - - -LIBS += -losgText -losgSim $(OSG_LIBS) $(OTHER_LIBS) - - -TARGET_BASENAME = geo -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/gif/GNUmakefile b/src/osgPlugins/gif/GNUmakefile deleted file mode 100644 index 5e44c8674..000000000 --- a/src/osgPlugins/gif/GNUmakefile +++ /dev/null @@ -1,24 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterGIF.cpp\ - - -ifeq ($(OS),HP-UX) -INC += $(GIF_INCLUDE) -else -INC += -I/usr/local/include\ - -I/usr/freeware/include\ - -LINKARGS += -L/usr/freeware/lib$(ARCH) -endif - - -LIBS += $(OSG_LIBS) $(GIF_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = gif -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/hdr/GNUmakefile b/src/osgPlugins/hdr/GNUmakefile deleted file mode 100644 index 3db049475..000000000 --- a/src/osgPlugins/hdr/GNUmakefile +++ /dev/null @@ -1,14 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - hdrloader.cpp\ - ReaderWriterHDR.cpp\ - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = hdr -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/ive/GNUmakefile b/src/osgPlugins/ive/GNUmakefile deleted file mode 100644 index e247f6934..000000000 --- a/src/osgPlugins/ive/GNUmakefile +++ /dev/null @@ -1,104 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - AlphaFunc.cpp\ - AnimationPathCallback.cpp\ - AnimationPath.cpp\ - AzimElevationSector.cpp\ - AzimSector.cpp\ - AutoTransform.cpp\ - Billboard.cpp\ - BlendFunc.cpp\ - BlendColor.cpp\ - BlinkSequence.cpp\ - ClipNode.cpp\ - ClipPlane.cpp\ - ClusterCullingCallback.cpp\ - Camera.cpp\ - CameraView.cpp\ - ConeSector.cpp\ - ConvexPlanarOccluder.cpp\ - ConvexPlanarPolygon.cpp\ - CoordinateSystemNode.cpp\ - ColorMask.cpp\ - CullFace.cpp\ - DataInputStream.cpp\ - DataOutputStream.cpp\ - Depth.cpp\ - DirectionalSector.cpp\ - DOFTransform.cpp\ - Drawable.cpp\ - DrawArrayLengths.cpp\ - DrawArrays.cpp\ - DrawElementsUByte.cpp\ - DrawElementsUInt.cpp\ - DrawElementsUShort.cpp\ - ElevationSector.cpp\ - EllipsoidModel.cpp\ - Exception.cpp\ - FragmentProgram.cpp\ - FrontFace.cpp\ - Geode.cpp\ - Geometry.cpp\ - Group.cpp\ - Image.cpp\ - Impostor.cpp\ - Light.cpp\ - LightModel.cpp\ - LightPoint.cpp\ - LightPointNode.cpp\ - LightSource.cpp\ - LineWidth.cpp\ - LOD.cpp\ - Material.cpp\ - MatrixTransform.cpp\ - MultiSwitch.cpp\ - MultiTextureControl.cpp\ - Node.cpp\ - Object.cpp\ - OccluderNode.cpp\ - PagedLOD.cpp\ - Point.cpp\ - PointSprite.cpp\ - PolygonMode.cpp\ - PolygonOffset.cpp\ - PositionAttitudeTransform.cpp\ - PrimitiveSet.cpp\ - Program.cpp\ - ProxyNode.cpp\ - ReaderWriterIVE.cpp\ - Sequence.cpp\ - Scissor.cpp\ - ShadeModel.cpp\ - Shader.cpp\ - Shape.cpp\ - ShapeDrawable.cpp\ - StateSet.cpp\ - Stencil.cpp\ - Switch.cpp\ - TexEnvCombine.cpp\ - TexEnv.cpp\ - TexGen.cpp\ - TexGenNode.cpp\ - TexMat.cpp\ - Text.cpp\ - Texture1D.cpp\ - Texture2D.cpp\ - Texture3D.cpp\ - Texture.cpp\ - TextureCubeMap.cpp\ - TextureRectangle.cpp\ - Transform.cpp\ - Uniform.cpp\ - VertexProgram.cpp\ - Viewport.cpp\ - VisibilityGroup.cpp\ - -LIBS += -losgFX -losgSim -losgText $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = ive -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/jp2/GNUmakefile b/src/osgPlugins/jp2/GNUmakefile deleted file mode 100644 index 6c231cb63..000000000 --- a/src/osgPlugins/jp2/GNUmakefile +++ /dev/null @@ -1,13 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterJP2.cpp\ - -LIBS += $(OSG_LIBS)-ljasper $(OTHER_LIBS) - -TARGET_BASENAME = jp2 -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/jpeg/GNUmakefile b/src/osgPlugins/jpeg/GNUmakefile deleted file mode 100644 index 75bd12022..000000000 --- a/src/osgPlugins/jpeg/GNUmakefile +++ /dev/null @@ -1,15 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterJPEG.cpp\ - -INC += $(JPEG_INCLUDE) - -LIBS += $(OSG_LIBS) $(JPEG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = jpeg -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/logo/GNUmakefile b/src/osgPlugins/logo/GNUmakefile deleted file mode 100644 index ccea33bfa..000000000 --- a/src/osgPlugins/logo/GNUmakefile +++ /dev/null @@ -1,13 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterLOGO.cpp\ - -LIBS += $(OSG_LIBS) $(GL_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = logo -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/lwo/GNUmakefile b/src/osgPlugins/lwo/GNUmakefile deleted file mode 100644 index 7b0dfbf53..000000000 --- a/src/osgPlugins/lwo/GNUmakefile +++ /dev/null @@ -1,28 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - old_lw.cpp\ - old_Lwo2.cpp\ - old_Lwo2Layer.cpp\ - Block.cpp\ - Clip.cpp\ - Converter.cpp\ - Object.cpp\ - Polygon.cpp\ - Surface.cpp\ - Tessellator.cpp\ - Unit.cpp\ - VertexMap.cpp\ - ReaderWriterLWO.cpp\ - - -INC += -I$(THISDIR) - -LIBS += -losgFX $(OSG_LIBS) $(OTHER_LIBS) $(GL_LIBS) - -TARGET_BASENAME = lwo -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/lws/GNUmakefile b/src/osgPlugins/lws/GNUmakefile deleted file mode 100644 index ef4eec459..000000000 --- a/src/osgPlugins/lws/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - SceneLoader.cpp\ - ReaderWriterLWS.cpp\ - - -INC += -I$(THISDIR) - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = lws -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/md2/GNUmakefile b/src/osgPlugins/md2/GNUmakefile deleted file mode 100644 index 9341df477..000000000 --- a/src/osgPlugins/md2/GNUmakefile +++ /dev/null @@ -1,16 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterMD2.cpp\ - - -INC += -I$(THISDIR) - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = md2 -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/net/GNUmakefile b/src/osgPlugins/net/GNUmakefile deleted file mode 100644 index 7a8bd56fd..000000000 --- a/src/osgPlugins/net/GNUmakefile +++ /dev/null @@ -1,15 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterNET.cpp\ - sockinet.cpp\ - sockstream.cpp\ - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) $(SOCKET_LIBS) - -TARGET_BASENAME = net -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/normals/GNUmakefile b/src/osgPlugins/normals/GNUmakefile deleted file mode 100644 index 098a33f97..000000000 --- a/src/osgPlugins/normals/GNUmakefile +++ /dev/null @@ -1,14 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterNormals.cpp\ - Normals.cpp\ - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) $(SOCKET_LIBS) - -TARGET_BASENAME = normals -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/obj/GNUmakefile b/src/osgPlugins/obj/GNUmakefile deleted file mode 100644 index 4e1164f8f..000000000 --- a/src/osgPlugins/obj/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - obj.cpp\ - ReaderWriterOBJ.cpp\ - - -INC += -I$(THISDIR) - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = obj -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/osg/GNUmakefile b/src/osgPlugins/osg/GNUmakefile deleted file mode 100644 index 76424fe5f..000000000 --- a/src/osgPlugins/osg/GNUmakefile +++ /dev/null @@ -1,88 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - AlphaFunc.cpp\ - AnimationPath.cpp\ - AutoTransform.cpp\ - Billboard.cpp\ - BlendColor.cpp\ - BlendFunc.cpp\ - Camera.cpp\ - CameraView.cpp\ - ClearNode.cpp\ - ClipNode.cpp\ - ClipPlane.cpp\ - ClusterCullingCallback.cpp\ - ColorMask.cpp\ - ConvexPlanarOccluder.cpp\ - CoordinateSystemNode.cpp\ - CullFace.cpp\ - Depth.cpp\ - Drawable.cpp\ - EllipsoidModel.cpp\ - Fog.cpp\ - FragmentProgram.cpp\ - FrontFace.cpp\ - Geode.cpp\ - Geometry.cpp\ - Group.cpp\ - Image.cpp\ - Light.cpp\ - LightModel.cpp\ - LightSource.cpp\ - LineStipple.cpp\ - LineWidth.cpp\ - LOD.cpp\ - Material.cpp\ - Matrix.cpp\ - MatrixTransform.cpp\ - NodeCallback.cpp\ - Node.cpp\ - Object.cpp\ - OccluderNode.cpp\ - PagedLOD.cpp\ - Point.cpp\ - PointSprite.cpp\ - PolygonMode.cpp\ - PolygonOffset.cpp\ - PositionAttitudeTransform.cpp\ - Program.cpp\ - Projection.cpp\ - ProxyNode.cpp\ - ReaderWriterOSG.cpp\ - Scissor.cpp\ - Sequence.cpp\ - ShadeModel.cpp\ - Shader.cpp\ - Shape.cpp\ - ShapeDrawable.cpp\ - StateSet.cpp\ - Stencil.cpp\ - Switch.cpp\ - TessellationHints.cpp\ - TexEnvCombine.cpp\ - TexEnv.cpp\ - TexEnvFilter.cpp\ - TexGen.cpp\ - TexGenNode.cpp\ - TexMat.cpp\ - Texture1D.cpp\ - Texture2D.cpp\ - Texture3D.cpp\ - Texture.cpp\ - TextureCubeMap.cpp\ - TextureRectangle.cpp\ - Transform.cpp\ - Uniform.cpp\ - VertexProgram.cpp\ - Viewport.cpp\ - - -LIBS += -losg -losgDB $(OTHER_LIBS) - -TARGET_BASENAME = osg -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/osgFX/GNUmakefile b/src/osgPlugins/osgFX/GNUmakefile deleted file mode 100644 index 9d333a0fa..000000000 --- a/src/osgPlugins/osgFX/GNUmakefile +++ /dev/null @@ -1,20 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - IO_AnisotropicLighting.cpp\ - IO_BumpMapping.cpp\ - IO_Cartoon.cpp\ - IO_MultiTextureControl.cpp\ - IO_Scribe.cpp\ - IO_SpecularHighlights.cpp\ - IO_Effect.cpp\ - - -LIBS += -losgFX -losgDB -losgUtil -losg $(OTHER_LIBS) - -TARGET_BASENAME = osgFX -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/osgParticle/GNUmakefile b/src/osgPlugins/osgParticle/GNUmakefile deleted file mode 100644 index ec8a7fa06..000000000 --- a/src/osgPlugins/osgParticle/GNUmakefile +++ /dev/null @@ -1,43 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - IO_AccelOperator.cpp\ - IO_AngularAccelOperator.cpp\ - IO_BoxPlacer.cpp\ - IO_CenteredPlacer.cpp\ - IO_ConnectedParticleSystem.cpp\ - IO_ConstantRateCounter.cpp\ - IO_Emitter.cpp\ - IO_FluidFrictionOperator.cpp\ - IO_ForceOperator.cpp\ - IO_LinearInterpolator.cpp\ - IO_ModularEmitter.cpp\ - IO_ModularProgram.cpp\ - IO_MultiSegmentPlacer.cpp\ - IO_Particle.cpp\ - IO_ParticleEffect.cpp\ - IO_ParticleProcessor.cpp\ - IO_ParticleSystem.cpp\ - IO_ParticleSystemUpdater.cpp\ - IO_PointPlacer.cpp\ - IO_Program.cpp\ - IO_RadialShooter.cpp\ - IO_RandomRateCounter.cpp\ - IO_SectorPlacer.cpp\ - IO_SegmentPlacer.cpp\ - IO_SmokeEffect.cpp\ - IO_SmokeTrailEffect.cpp\ - IO_FireEffect.cpp\ - IO_ExplosionEffect.cpp\ - IO_ExplosionDebrisEffect.cpp\ - IO_VariableRateCounter.cpp\ - - -LIBS += -losgParticle -losgDB -losgUtil -losg $(OTHER_LIBS) - -TARGET_BASENAME = osgParticle -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/osgShadow/GNUmakefile b/src/osgPlugins/osgShadow/GNUmakefile deleted file mode 100644 index 173473e8a..000000000 --- a/src/osgPlugins/osgShadow/GNUmakefile +++ /dev/null @@ -1,19 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ParallelSplitShadowMap.cpp\ - ShadowMap.cpp\ - ShadowTechnique.cpp\ - ShadowTexture.cpp\ - ShadowVolume.cpp\ - ShadowedScene.cpp\ - ReaderWriterOsgShadow.cpp - -LIBS += -losgShadow -losgUtil -losg $(OTHER_LIBS) - -TARGET_BASENAME = osgShadow -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/osgSim/GNUmakefile b/src/osgPlugins/osgSim/GNUmakefile deleted file mode 100644 index faf35fec4..000000000 --- a/src/osgPlugins/osgSim/GNUmakefile +++ /dev/null @@ -1,21 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - IO_DOFTransform.cpp\ - IO_LightPointNode.cpp\ - IO_LightPoint.cpp\ - IO_BlinkSequence.cpp\ - IO_MultiSwitch.cpp\ - IO_Sector.cpp\ - IO_VisibilityGroup.cpp\ - IO_Impostor.cpp\ - - -LIBS += -losgSim -losgText -losgDB -losgUtil -losg $(OTHER_LIBS) - -TARGET_BASENAME = osgSim -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/osgText/GNUmakefile b/src/osgPlugins/osgText/GNUmakefile deleted file mode 100644 index 36a365688..000000000 --- a/src/osgPlugins/osgText/GNUmakefile +++ /dev/null @@ -1,13 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - IO_Text.cpp - -LIBS += -losgText -losgUtil -losgDB -losg $(OTHER_LIBS) - -TARGET_BASENAME = osgText -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/osgViewer/GNUmakefile b/src/osgPlugins/osgViewer/GNUmakefile deleted file mode 100644 index 4416c24d2..000000000 --- a/src/osgPlugins/osgViewer/GNUmakefile +++ /dev/null @@ -1,14 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - View.cpp\ - ReaderWriterOsgViewer.cpp\ - -LIBS += -losgViewer -losgUtil -losgDB -losgGA -losgText -losg $(OTHER_LIBS) - -TARGET_BASENAME = osgViewer -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/osga/GNUmakefile b/src/osgPlugins/osga/GNUmakefile deleted file mode 100644 index 1d1e36d40..000000000 --- a/src/osgPlugins/osga/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - OSGA_Archive.cpp\ - ReaderWriterOSGA.cpp\ - - -INC += -I$(THISDIR) - -LIBS += -losgDB -losg $(OTHER_LIBS) - -TARGET_BASENAME = osga -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/osgtgz/GNUmakefile b/src/osgPlugins/osgtgz/GNUmakefile deleted file mode 100644 index a53fda49a..000000000 --- a/src/osgPlugins/osgtgz/GNUmakefile +++ /dev/null @@ -1,13 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterOSGTGZ.cpp\ - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = osgtgz -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/pfb/GNUmakefile b/src/osgPlugins/pfb/GNUmakefile deleted file mode 100644 index 168821b53..000000000 --- a/src/osgPlugins/pfb/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ConvertFromPerformer.cpp\ - ReaderWriterPFB.cpp\ - -LIBS += $(OSG_LIBS) $(PF_XTRA_LIBS) $(OTHER_LIBS) - -# Performer libs must be compiled -O on Linux -DBGF += -O - -TARGET_BASENAME = pfb -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/pic/GNUmakefile b/src/osgPlugins/pic/GNUmakefile deleted file mode 100644 index 20f8d7f1f..000000000 --- a/src/osgPlugins/pic/GNUmakefile +++ /dev/null @@ -1,13 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterPIC.cpp\ - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = pic -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/png/GNUmakefile b/src/osgPlugins/png/GNUmakefile deleted file mode 100644 index afd81f0ae..000000000 --- a/src/osgPlugins/png/GNUmakefile +++ /dev/null @@ -1,21 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterPNG.cpp\ - -LIBS += $(OSG_LIBS) $(PNG_LIBS) $(OTHER_LIBS) -ifneq ($(OS),HP-UX) -INC += -I/usr/local/include\ - -I/usr/freeware/include\ - -LINKARGS += -L/usr/freeware/lib$(ARCH) -else -INC += $(PNG_INCLUDE) -endif - -TARGET_BASENAME = png -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/pnm/GNUmakefile b/src/osgPlugins/pnm/GNUmakefile deleted file mode 100644 index 4f785739e..000000000 --- a/src/osgPlugins/pnm/GNUmakefile +++ /dev/null @@ -1,13 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterPNM.cpp\ - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = pnm -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/quicktime/GNUmakefile b/src/osgPlugins/quicktime/GNUmakefile deleted file mode 100644 index 1517af85d..000000000 --- a/src/osgPlugins/quicktime/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES = ReaderWriterQT.cpp\ - QTtexture.cpp\ - MovieData.cpp\ - QTUtils.cpp\ - QuicktimeImageStream.cpp\ - -LIBS += $(QUICKTIME) $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = qt -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules - diff --git a/src/osgPlugins/rgb/GNUmakefile b/src/osgPlugins/rgb/GNUmakefile deleted file mode 100644 index d7a0639f0..000000000 --- a/src/osgPlugins/rgb/GNUmakefile +++ /dev/null @@ -1,13 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterRGB.cpp\ - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = rgb -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/rot/GNUmakefile b/src/osgPlugins/rot/GNUmakefile deleted file mode 100644 index 947308572..000000000 --- a/src/osgPlugins/rot/GNUmakefile +++ /dev/null @@ -1,13 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterROT.cpp\ - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = rot -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/scale/GNUmakefile b/src/osgPlugins/scale/GNUmakefile deleted file mode 100644 index 65ddce93a..000000000 --- a/src/osgPlugins/scale/GNUmakefile +++ /dev/null @@ -1,13 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterSCALE.cpp\ - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = scale -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/shp/GNUmakefile b/src/osgPlugins/shp/GNUmakefile deleted file mode 100644 index d77ce5059..000000000 --- a/src/osgPlugins/shp/GNUmakefile +++ /dev/null @@ -1,15 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ESRIShape.cpp\ - ESRIShapeParser.cpp\ - ESRIShapeReaderWriter.cpp\ - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) $(SOCKET_LIBS) - -TARGET_BASENAME = shp -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/stl/GNUmakefile b/src/osgPlugins/stl/GNUmakefile deleted file mode 100644 index 0b2ce4530..000000000 --- a/src/osgPlugins/stl/GNUmakefile +++ /dev/null @@ -1,17 +0,0 @@ -# -# $Id$ -# - -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterSTL.cpp - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = stl -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/tga/GNUmakefile b/src/osgPlugins/tga/GNUmakefile deleted file mode 100644 index 97a16a290..000000000 --- a/src/osgPlugins/tga/GNUmakefile +++ /dev/null @@ -1,13 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterTGA.cpp\ - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = tga -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/tgz/GNUmakefile b/src/osgPlugins/tgz/GNUmakefile deleted file mode 100644 index 743e91880..000000000 --- a/src/osgPlugins/tgz/GNUmakefile +++ /dev/null @@ -1,13 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterTGZ.cpp\ - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = tgz -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/tiff/GNUmakefile b/src/osgPlugins/tiff/GNUmakefile deleted file mode 100644 index 4a9515e83..000000000 --- a/src/osgPlugins/tiff/GNUmakefile +++ /dev/null @@ -1,20 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterTIFF.cpp\ - -LIBS += $(OSG_LIBS) $(TIFF_LIB) $(OTHER_LIBS) - -ifeq ($(OS),HP-UX) -INC += $(TIFF_INCLUDE) -else -INC += -I/usr/local/include -LDFLAGS += -L/usr/local/lib -endif - -TARGET_BASENAME = tiff -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/trans/GNUmakefile b/src/osgPlugins/trans/GNUmakefile deleted file mode 100644 index 56f6a8a17..000000000 --- a/src/osgPlugins/trans/GNUmakefile +++ /dev/null @@ -1,13 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterTRANS.cpp\ - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = trans -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/txf/GNUmakefile b/src/osgPlugins/txf/GNUmakefile deleted file mode 100644 index a92e2308d..000000000 --- a/src/osgPlugins/txf/GNUmakefile +++ /dev/null @@ -1,15 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - TXFFont.cpp\ - ReaderWriterTXF.cpp\ - -LIBS += -losgText -losg -losgDB $(OTHER_LIBS) - - -TARGET_BASENAME = txf -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/txp/GNUmakefile b/src/osgPlugins/txp/GNUmakefile deleted file mode 100644 index 7e30a6b5d..000000000 --- a/src/osgPlugins/txp/GNUmakefile +++ /dev/null @@ -1,52 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterTXP.cpp\ - TXPArchive.cpp\ - TXPIO.cpp\ - TXPNode.cpp\ - TXPPageManager.cpp\ - TXPParser.cpp\ - TXPSeamLOD.cpp\ - TXPPagedLOD.cpp\ - TileMapper.cpp\ - trpage_basic.cpp\ - trpage_compat.cpp\ - trpage_geom.cpp\ - trpage_header.cpp\ - trpage_label.cpp\ - trpage_light.cpp\ - trpage_main.cpp\ - trpage_managers.cpp\ - trpage_material.cpp\ - trpage_model.cpp\ - trpage_nodes.cpp\ - trpage_parse.cpp\ - trpage_pparse.cpp\ - trpage_print.cpp\ - trpage_print_parse.cpp\ - trpage_range.cpp\ - trpage_rarchive.cpp\ - trpage_readbuf.cpp\ - trpage_scene.cpp\ - trpage_swap.cpp\ - trpage_tile.cpp\ - trpage_util.cpp\ - trpage_warchive.cpp\ - trpage_writebuf.cpp\ - - -INC += -I$(THISDIR) - -LIBS += -losgSim -losgText $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = txp -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -#### LIB NOT NEEDED ANYMORE and causes a race condition when doing a parallel make. -####LIB_TARGET_BASENAME=osgTXP -####LIB = $(LIB_PREFIX)$(LIB_TARGET_BASENAME).$(LIB_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/vrml/GNUmakefile b/src/osgPlugins/vrml/GNUmakefile deleted file mode 100644 index 2b0da0de8..000000000 --- a/src/osgPlugins/vrml/GNUmakefile +++ /dev/null @@ -1,21 +0,0 @@ -# -# $Id$ -# - -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterVRML2.cpp\ - -OPENVRML_HOME ? = /usr/local - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) -L$(OPENVRML_HOME)/lib -lopenvrml - -INC += -I$(OPENVRML_HOME)/include/openvrml - -TARGET_BASENAME = vrml -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/x/GNUmakefile b/src/osgPlugins/x/GNUmakefile deleted file mode 100644 index 2056e1051..000000000 --- a/src/osgPlugins/x/GNUmakefile +++ /dev/null @@ -1,20 +0,0 @@ -# -# $Id$ -# - -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterDirectX.cpp\ - directx.cpp\ - mesh.cpp\ - types.cpp - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = x -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/xine/GNUmakefile b/src/osgPlugins/xine/GNUmakefile deleted file mode 100644 index 05b7200f0..000000000 --- a/src/osgPlugins/xine/GNUmakefile +++ /dev/null @@ -1,25 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CFILES =\ - video_out_rgb.c\ - -CXXFILES =\ - ReaderWriterXine.cpp\ - -INC += $(XINE_INCLUDES) - -LIBS += $(OSG_LIBS) $(XINE_LIBS) $(OTHER_LIBS) - -ifeq ($(ARCH),64) - CFLAGS += -fPIC - CXXFLAGS += -fPIC -else - CFLAGS += -DCOMPILE_ASSEMBLY -endif - -TARGET_BASENAME = xine -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgPlugins/zip/GNUmakefile b/src/osgPlugins/zip/GNUmakefile deleted file mode 100644 index 462b0c8c0..000000000 --- a/src/osgPlugins/zip/GNUmakefile +++ /dev/null @@ -1,13 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - ReaderWriterZIP.cpp\ - -LIBS += $(OSG_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = zip -include $(TOPDIR)/Make/cygwin_plugin_def -PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgShadow/GNUmakefile b/src/osgShadow/GNUmakefile deleted file mode 100644 index 9681fe3a2..000000000 --- a/src/osgShadow/GNUmakefile +++ /dev/null @@ -1,22 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - - -CXXFILES = \ - OccluderGeometry.cpp\ - ShadowedScene.cpp\ - ShadowTechnique.cpp\ - ShadowMap.cpp\ - ShadowTexture.cpp\ - ShadowVolume.cpp\ - ParallelSplitShadowMap.cpp\ - Version.cpp\ - -DEF += -DOSGSHADOW_LIBRARY - -LIBS += -losgUtil -losg $(GL_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = osgShadow -LIB = $(LIB_PREFIX)$(TARGET_BASENAME).$(LIB_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgSim/GNUmakefile b/src/osgSim/GNUmakefile deleted file mode 100644 index a57245846..000000000 --- a/src/osgSim/GNUmakefile +++ /dev/null @@ -1,37 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - - -CXXFILES = \ - BlinkSequence.cpp\ - ColorRange.cpp\ - DOFTransform.cpp\ - Impostor.cpp\ - ImpostorSprite.cpp\ - InsertImpostorsVisitor.cpp\ - LightPoint.cpp\ - LightPointDrawable.cpp\ - LightPointSpriteDrawable.cpp\ - LightPointNode.cpp\ - LineOfSight.cpp\ - HeightAboveTerrain.cpp\ - ElevationSlice.cpp\ - MultiSwitch.cpp\ - OverlayNode.cpp\ - OpenFlightOptimizer.cpp\ - ScalarBar.cpp\ - ScalarsToColors.cpp\ - Sector.cpp\ - SphereSegment.cpp\ - Version.cpp\ - VisibilityGroup.cpp\ - - -DEF += -DOSGSIM_LIBRARY - -LIBS += -losgText -losgDB -losgUtil -losg $(GL_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = osgSim -LIB = $(LIB_PREFIX)$(TARGET_BASENAME).$(LIB_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgTerrain/GNUmakefile b/src/osgTerrain/GNUmakefile deleted file mode 100644 index 5dca7d8b5..000000000 --- a/src/osgTerrain/GNUmakefile +++ /dev/null @@ -1,19 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - - -CXXFILES = \ - Locator.cpp\ - Layer.cpp\ - TerrainNode.cpp\ - TerrainTechnique.cpp\ - Version.cpp\ - -DEF += -DOSGTERRAIN_LIBRARY - -LIBS += -losgDB -losgUtil -losg $(GL_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = osgTerrain -LIB = $(LIB_PREFIX)$(TARGET_BASENAME).$(LIB_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgText/GNUmakefile b/src/osgText/GNUmakefile deleted file mode 100644 index 0476b6f8f..000000000 --- a/src/osgText/GNUmakefile +++ /dev/null @@ -1,20 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - - -CXXFILES = \ - DefaultFont.cpp\ - Font.cpp\ - Text.cpp\ - FadeText.cpp\ - String.cpp\ - Version.cpp\ - -DEF += -DOSGTEXT_LIBRARY - -LIBS += -losgDB -losg $(GL_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = osgText -LIB = $(LIB_PREFIX)$(TARGET_BASENAME).$(LIB_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgUtil/GNUmakefile b/src/osgUtil/GNUmakefile deleted file mode 100644 index 59eec9d59..000000000 --- a/src/osgUtil/GNUmakefile +++ /dev/null @@ -1,44 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - - -CXXFILES = \ - CubeMapGenerator.cpp\ - CullVisitor.cpp\ - DelaunayTriangulator.cpp\ - DisplayRequirementsVisitor.cpp\ - GLObjectsVisitor.cpp\ - HalfWayMapGenerator.cpp\ - HighlightMapGenerator.cpp\ - IntersectionVisitor.cpp\ - IntersectVisitor.cpp\ - LineSegmentIntersector.cpp\ - Optimizer.cpp\ - PlaneIntersector.cpp\ - PolytopeIntersector.cpp\ - PositionalStateContainer.cpp\ - RenderBin.cpp\ - RenderLeaf.cpp\ - RenderStage.cpp\ - SceneView.cpp\ - Simplifier.cpp\ - SmoothingVisitor.cpp\ - StateGraph.cpp\ - Statistics.cpp\ - TangentSpaceGenerator.cpp\ - Tessellator.cpp\ - TransformAttributeFunctor.cpp\ - TransformCallback.cpp\ - TriStrip_tri_stripper.cpp\ - TriStripVisitor.cpp\ - UpdateVisitor.cpp\ - Version.cpp\ - -DEF += -DOSGUTIL_LIBRARY - -LIBS += -losg $(GL_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = osgUtil -LIB = $(LIB_PREFIX)$(TARGET_BASENAME).$(LIB_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgViewer/GNUmakefile b/src/osgViewer/GNUmakefile deleted file mode 100644 index c55b55de2..000000000 --- a/src/osgViewer/GNUmakefile +++ /dev/null @@ -1,49 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs - - -CXXFILES = \ - CompositeViewer.cpp\ - Scene.cpp\ - SimpleViewer.cpp\ - StatsHandler.cpp\ - HelpHandler.cpp\ - Version.cpp\ - View.cpp\ - Viewer.cpp\ - - -ifeq ($(OS),Darwin) - ifeq ($(USE_AGL),yes) - CXXFILES += GraphicsWindowCarbon.cpp - LIBS += -framework AGL - else - ifeq ($(USE_CGL),yes) - CXXFILES += GraphicsWindowCarbon.cpp - else - CXXFILES += GraphicsWindowX11.cpp - LIBS += $(X_LIBS) - endif - endif -else - ifeq ($(OS),MINGW) - CXXFILES += GraphicsWindowWin32.cpp - LIBS += -lgdi32 - else - ifeq ($(OS),CYGWIN) - CXXFILES += GraphicsWindowWin32.cpp - LIBS += -lgdi32 - else - CXXFILES += GraphicsWindowX11.cpp - endif - endif -endif - -DEF += -DOSGVIEWER_LIBRARY - -LIBS += -losgGA -losgText -losgDB -losgUtil -losg $(GL_LIBS) $(OTHER_LIBS) - -TARGET_BASENAME = osgViewer -LIB = $(LIB_PREFIX)$(TARGET_BASENAME).$(LIB_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgWrappers/GNUmakefile b/src/osgWrappers/GNUmakefile deleted file mode 100644 index bfd1aaa1f..000000000 --- a/src/osgWrappers/GNUmakefile +++ /dev/null @@ -1,7 +0,0 @@ -TOPDIR = ../.. -include $(TOPDIR)/Make/makedefs -include $(TOPDIR)/Make/makedirdefs - -DIRS = $(WRAPPER_DIRS) - -include $(TOPDIR)/Make/makedirrules diff --git a/src/osgWrappers/osg/GNUmakefile b/src/osgWrappers/osg/GNUmakefile deleted file mode 100644 index e21fc4075..000000000 --- a/src/osgWrappers/osg/GNUmakefile +++ /dev/null @@ -1,153 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - AlphaFunc.cpp\ - AnimationPath.cpp\ - ApplicationUsage.cpp\ - ArgumentParser.cpp\ - Array.cpp\ - AutoTransform.cpp\ - Billboard.cpp\ - BlendColor.cpp\ - BlendEquation.cpp\ - BlendFunc.cpp\ - BoundingBox.cpp\ - BoundingSphere.cpp\ - BufferObject.cpp\ - Camera.cpp\ - CameraNode.cpp\ - CameraView.cpp\ - ClampColor.cpp\ - ClearNode.cpp\ - ClipNode.cpp\ - ClipPlane.cpp\ - ClusterCullingCallback.cpp\ - CollectOccludersVisitor.cpp\ - ColorMask.cpp\ - ColorMatrix.cpp\ - ComputeBoundsVisitor.cpp\ - ConvexPlanarOccluder.cpp\ - ConvexPlanarPolygon.cpp\ - CoordinateSystemNode.cpp\ - CopyOp.cpp\ - CullFace.cpp\ - CullSettings.cpp\ - CullStack.cpp\ - CullingSet.cpp\ - DeleteHandler.cpp\ - Depth.cpp\ - DisplaySettings.cpp\ - DrawPixels.cpp\ - Drawable.cpp\ - Endian.cpp\ - Fog.cpp\ - FragmentProgram.cpp\ - FrameBufferObject.cpp\ - FrameStamp.cpp\ - FrontFace.cpp\ - GL2Extensions.cpp\ - Geode.cpp\ - Geometry.cpp\ - GraphicsContext.cpp\ - GraphicsThread.cpp\ - Group.cpp\ - Image.cpp\ - ImageStream.cpp\ - LOD.cpp\ - Light.cpp\ - LightModel.cpp\ - LightSource.cpp\ - LineSegment.cpp\ - LineStipple.cpp\ - LineWidth.cpp\ - LogicOp.cpp\ - Material.cpp\ - Matrix.cpp\ - MatrixTransform.cpp\ - Matrixd.cpp\ - Matrixf.cpp\ - Multisample.cpp\ - Node.cpp\ - NodeCallback.cpp\ - NodeTrackerCallback.cpp\ - NodeVisitor.cpp\ - Notify.cpp\ - Object.cpp\ - OccluderNode.cpp\ - PagedLOD.cpp\ - Plane.cpp\ - Point.cpp\ - PointSprite.cpp\ - PolygonMode.cpp\ - PolygonOffset.cpp\ - PolygonStipple.cpp\ - Polytope.cpp\ - PositionAttitudeTransform.cpp\ - PrimitiveSet.cpp\ - Program.cpp\ - Projection.cpp\ - ProxyNode.cpp\ - Quat.cpp\ - Referenced.cpp\ - RenderInfo.cpp\ - Scissor.cpp\ - Sequence.cpp\ - ShadeModel.cpp\ - Shader.cpp\ - ShadowVolumeOccluder.cpp\ - Shape.cpp\ - ShapeDrawable.cpp\ - State.cpp\ - StateAttribute.cpp\ - StateSet.cpp\ - Stats.cpp\ - Stencil.cpp\ - StencilTwoSided.cpp\ - Switch.cpp\ - TexEnv.cpp\ - TexEnvCombine.cpp\ - TexEnvFilter.cpp\ - TexGen.cpp\ - TexGenNode.cpp\ - TexMat.cpp\ - Texture.cpp\ - Texture1D.cpp\ - Texture2D.cpp\ - Texture3D.cpp\ - TextureCubeMap.cpp\ - TextureRectangle.cpp\ - Timer.cpp\ - TransferFunction.cpp\ - Transform.cpp\ - Uniform.cpp\ - Vec2.cpp\ - Vec2b.cpp\ - Vec2d.cpp\ - Vec2f.cpp\ - Vec2s.cpp\ - Vec3.cpp\ - Vec3b.cpp\ - Vec3d.cpp\ - Vec3f.cpp\ - Vec3s.cpp\ - Vec4.cpp\ - Vec4b.cpp\ - Vec4d.cpp\ - Vec4f.cpp\ - Vec4s.cpp\ - Vec4ub.cpp\ - VertexProgram.cpp\ - View.cpp\ - Viewport.cpp\ - observer_ptr.cpp\ - -LIBS += -losg -losg -losgIntrospection $(GL_LIBS) $(OTHER_LIBS) - -OPTF = -O - -TARGET_BASENAME = osg -include $(TOPDIR)/Make/cygwin_wrapper_def -WRAPPER = $(WRAPPER_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgWrappers/osgDB/GNUmakefile b/src/osgWrappers/osgDB/GNUmakefile deleted file mode 100644 index 4a72828a4..000000000 --- a/src/osgWrappers/osgDB/GNUmakefile +++ /dev/null @@ -1,29 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - Archive.cpp\ - DatabasePager.cpp\ - DotOsgWrapper.cpp\ - DynamicLibrary.cpp\ - Field.cpp\ - FieldReader.cpp\ - FieldReaderIterator.cpp\ - FileUtils.cpp\ - ImageOptions.cpp\ - Input.cpp\ - Output.cpp\ - ParameterOutput.cpp\ - ReaderWriter.cpp\ - Registry.cpp\ - SharedStateManager.cpp\ - -LIBS += -losgDB -losg -losgIntrospection $(GL_LIBS) $(OTHER_LIBS) - -OPTF = -O - -TARGET_BASENAME = osgDB -include $(TOPDIR)/Make/cygwin_wrapper_def -WRAPPER = $(WRAPPER_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgWrappers/osgFX/GNUmakefile b/src/osgWrappers/osgFX/GNUmakefile deleted file mode 100644 index c51717450..000000000 --- a/src/osgWrappers/osgFX/GNUmakefile +++ /dev/null @@ -1,24 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - AnisotropicLighting.cpp\ - BumpMapping.cpp\ - Cartoon.cpp\ - Effect.cpp\ - MultiTextureControl.cpp\ - Registry.cpp\ - Scribe.cpp\ - SpecularHighlights.cpp\ - Technique.cpp\ - Validator.cpp\ - -LIBS += -losgFX -losg -losgIntrospection -losgUtil -losgDB $(GL_LIBS) $(OTHER_LIBS) - -OPTF = -O - -TARGET_BASENAME = osgFX -include $(TOPDIR)/Make/cygwin_wrapper_def -WRAPPER = $(WRAPPER_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgWrappers/osgGA/GNUmakefile b/src/osgWrappers/osgGA/GNUmakefile deleted file mode 100644 index 973bd6c2e..000000000 --- a/src/osgWrappers/osgGA/GNUmakefile +++ /dev/null @@ -1,29 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - AnimationPathManipulator.cpp\ - DriveManipulator.cpp\ - EventQueue.cpp\ - EventVisitor.cpp\ - FlightManipulator.cpp\ - GUIActionAdapter.cpp\ - GUIEventAdapter.cpp\ - GUIEventHandler.cpp\ - KeySwitchMatrixManipulator.cpp\ - MatrixManipulator.cpp\ - NodeTrackerManipulator.cpp\ - StateSetManipulator.cpp\ - TerrainManipulator.cpp\ - TrackballManipulator.cpp\ - UFOManipulator.cpp\ - -LIBS += -losgGA -losg -losgIntrospection -losgUtil $(GL_LIBS) $(OTHER_LIBS) - -OPTF = -O - -TARGET_BASENAME = osgGA -include $(TOPDIR)/Make/cygwin_wrapper_def -WRAPPER = $(WRAPPER_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgWrappers/osgManipulator/GNUmakefile b/src/osgWrappers/osgManipulator/GNUmakefile deleted file mode 100644 index 5c1cfaeb2..000000000 --- a/src/osgWrappers/osgManipulator/GNUmakefile +++ /dev/null @@ -1,34 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - AntiSquish.cpp\ - Command.cpp\ - CommandManager.cpp\ - Constraint.cpp\ - Dragger.cpp\ - Projector.cpp\ - RotateCylinderDragger.cpp\ - RotateSphereDragger.cpp\ - Scale1DDragger.cpp\ - Scale2DDragger.cpp\ - ScaleAxisDragger.cpp\ - Selection.cpp\ - TabBoxDragger.cpp\ - TabPlaneDragger.cpp\ - TabPlaneTrackballDragger.cpp\ - TrackballDragger.cpp\ - Translate1DDragger.cpp\ - Translate2DDragger.cpp\ - TranslateAxisDragger.cpp\ - TranslatePlaneDragger.cpp\ - -LIBS += -losgManipulator -losg -losgIntrospection $(GL_LIBS) $(OTHER_LIBS) - -OPTF = -O - -TARGET_BASENAME = osgManipulator -include $(TOPDIR)/Make/cygwin_wrapper_def -WRAPPER = $(WRAPPER_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgWrappers/osgParticle/GNUmakefile b/src/osgWrappers/osgParticle/GNUmakefile deleted file mode 100644 index bd2288171..000000000 --- a/src/osgWrappers/osgParticle/GNUmakefile +++ /dev/null @@ -1,52 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - AccelOperator.cpp\ - AngularAccelOperator.cpp\ - BoxPlacer.cpp\ - CenteredPlacer.cpp\ - ConnectedParticleSystem.cpp\ - ConstantRateCounter.cpp\ - Counter.cpp\ - Emitter.cpp\ - ExplosionDebrisEffect.cpp\ - ExplosionEffect.cpp\ - FireEffect.cpp\ - FluidFrictionOperator.cpp\ - FluidProgram.cpp\ - ForceOperator.cpp\ - Interpolator.cpp\ - LinearInterpolator.cpp\ - ModularEmitter.cpp\ - ModularProgram.cpp\ - MultiSegmentPlacer.cpp\ - Operator.cpp\ - Particle.cpp\ - ParticleEffect.cpp\ - ParticleProcessor.cpp\ - ParticleSystem.cpp\ - ParticleSystemUpdater.cpp\ - Placer.cpp\ - PointPlacer.cpp\ - PrecipitationEffect.cpp\ - Program.cpp\ - RadialShooter.cpp\ - RandomRateCounter.cpp\ - SectorPlacer.cpp\ - SegmentPlacer.cpp\ - Shooter.cpp\ - SmokeEffect.cpp\ - SmokeTrailEffect.cpp\ - VariableRateCounter.cpp\ - range.cpp\ - -LIBS += -losgParticle -losg -losgIntrospection -losgUtil -losgDB $(GL_LIBS) $(OTHER_LIBS) - -OPTF = -O - -TARGET_BASENAME = osgParticle -include $(TOPDIR)/Make/cygwin_wrapper_def -WRAPPER = $(WRAPPER_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgWrappers/osgShadow/GNUmakefile b/src/osgWrappers/osgShadow/GNUmakefile deleted file mode 100644 index c232cb25b..000000000 --- a/src/osgWrappers/osgShadow/GNUmakefile +++ /dev/null @@ -1,22 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - Export.cpp\ - OccluderGeometry.cpp\ - ParallelSplitShadowMap.cpp\ - ShadowMap.cpp\ - ShadowTechnique.cpp\ - ShadowTexture.cpp\ - ShadowVolume.cpp\ - ShadowedScene.cpp\ - -LIBS += -losgShadow -losg -losgIntrospection $(GL_LIBS) $(OTHER_LIBS) - -OPTF = -O - -TARGET_BASENAME = osgShadow -include $(TOPDIR)/Make/cygwin_wrapper_def -WRAPPER = $(WRAPPER_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgWrappers/osgSim/GNUmakefile b/src/osgWrappers/osgSim/GNUmakefile deleted file mode 100644 index cca8a4277..000000000 --- a/src/osgWrappers/osgSim/GNUmakefile +++ /dev/null @@ -1,35 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - BlinkSequence.cpp\ - ColorRange.cpp\ - DOFTransform.cpp\ - ElevationSlice.cpp\ - GeographicLocation.cpp\ - HeightAboveTerrain.cpp\ - Impostor.cpp\ - ImpostorSprite.cpp\ - InsertImpostorsVisitor.cpp\ - LightPoint.cpp\ - LightPointNode.cpp\ - LightPointSystem.cpp\ - LineOfSight.cpp\ - MultiSwitch.cpp\ - OpenFlightOptimizer.cpp\ - OverlayNode.cpp\ - ScalarBar.cpp\ - ScalarsToColors.cpp\ - Sector.cpp\ - SphereSegment.cpp\ - VisibilityGroup.cpp\ - -LIBS += -losgSim -losg -losgIntrospection -losgUtil -losgText -losgDB $(GL_LIBS) $(OTHER_LIBS) - -OPTF = -O - -TARGET_BASENAME = osgSim -include $(TOPDIR)/Make/cygwin_wrapper_def -WRAPPER = $(WRAPPER_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgWrappers/osgTerrain/GNUmakefile b/src/osgWrappers/osgTerrain/GNUmakefile deleted file mode 100644 index 480ac39cb..000000000 --- a/src/osgWrappers/osgTerrain/GNUmakefile +++ /dev/null @@ -1,20 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - Export.cpp\ - GeometryTechnique.cpp\ - Layer.cpp\ - Locator.cpp\ - TerrainNode.cpp\ - TerrainTechnique.cpp\ - -LIBS += -losgTerrain -losg -losgIntrospection -losgDB -losgUtil -losgFX $(GL_LIBS) $(OTHER_LIBS) - -OPTF = -O - -TARGET_BASENAME = osgTerrain -include $(TOPDIR)/Make/cygwin_wrapper_def -WRAPPER = $(WRAPPER_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgWrappers/osgText/GNUmakefile b/src/osgWrappers/osgText/GNUmakefile deleted file mode 100644 index 810863966..000000000 --- a/src/osgWrappers/osgText/GNUmakefile +++ /dev/null @@ -1,19 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - Export.cpp\ - FadeText.cpp\ - Font.cpp\ - String.cpp\ - Text.cpp\ - -LIBS += -losgText -losg -losgIntrospection -losgDB $(GL_LIBS) $(OTHER_LIBS) - -OPTF = -O - -TARGET_BASENAME = osgText -include $(TOPDIR)/Make/cygwin_wrapper_def -WRAPPER = $(WRAPPER_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgWrappers/osgUtil/GNUmakefile b/src/osgWrappers/osgUtil/GNUmakefile deleted file mode 100644 index b40b27b7a..000000000 --- a/src/osgWrappers/osgUtil/GNUmakefile +++ /dev/null @@ -1,43 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - CubeMapGenerator.cpp\ - CullVisitor.cpp\ - DelaunayTriangulator.cpp\ - DisplayRequirementsVisitor.cpp\ - GLObjectsVisitor.cpp\ - HalfWayMapGenerator.cpp\ - HighlightMapGenerator.cpp\ - IntersectVisitor.cpp\ - IntersectionVisitor.cpp\ - LineSegmentIntersector.cpp\ - Optimizer.cpp\ - PlaneIntersector.cpp\ - PolytopeIntersector.cpp\ - PositionalStateContainer.cpp\ - ReflectionMapGenerator.cpp\ - RenderBin.cpp\ - RenderLeaf.cpp\ - RenderStage.cpp\ - SceneView.cpp\ - Simplifier.cpp\ - SmoothingVisitor.cpp\ - StateGraph.cpp\ - Statistics.cpp\ - TangentSpaceGenerator.cpp\ - Tessellator.cpp\ - TransformAttributeFunctor.cpp\ - TransformCallback.cpp\ - TriStripVisitor.cpp\ - UpdateVisitor.cpp\ - -LIBS += -losgUtil -losg -losgIntrospection $(GL_LIBS) $(OTHER_LIBS) - -OPTF = -O - -TARGET_BASENAME = osgUtil -include $(TOPDIR)/Make/cygwin_wrapper_def -WRAPPER = $(WRAPPER_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules diff --git a/src/osgWrappers/osgViewer/GNUmakefile b/src/osgWrappers/osgViewer/GNUmakefile deleted file mode 100644 index 898d1b5ec..000000000 --- a/src/osgWrappers/osgViewer/GNUmakefile +++ /dev/null @@ -1,22 +0,0 @@ -TOPDIR = ../../.. -include $(TOPDIR)/Make/makedefs - -CXXFILES =\ - CompositeViewer.cpp\ - GraphicsWindow.cpp\ - HelpHandler.cpp\ - Scene.cpp\ - SimpleViewer.cpp\ - StatsHandler.cpp\ - View.cpp\ - Viewer.cpp\ - -LIBS += -losgViewer -losg -losgIntrospection -losgUtil -losgDB -losgGA -losgText $(GL_LIBS) $(OTHER_LIBS) - -OPTF = -O - -TARGET_BASENAME = osgViewer -include $(TOPDIR)/Make/cygwin_wrapper_def -WRAPPER = $(WRAPPER_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) - -include $(TOPDIR)/Make/makerules