[PD-cvs] externals/grill/vst config-pd-msvc.txt,1.2,1.3 makefile.pd-msvc,1.3,1.4 vst.vcproj,1.4,1.5

xovo at users.sourceforge.net xovo at users.sourceforge.net
Mon Nov 10 04:42:05 CET 2003


Update of /cvsroot/pure-data/externals/grill/vst
In directory sc8-pr-cvs1:/tmp/cvs-serv25709

Modified Files:
	config-pd-msvc.txt makefile.pd-msvc vst.vcproj 
Log Message:
 ""

Index: config-pd-msvc.txt
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/vst/config-pd-msvc.txt,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** config-pd-msvc.txt	12 Mar 2003 04:40:48 -0000	1.2
--- config-pd-msvc.txt	10 Nov 2003 03:42:03 -0000	1.3
***************
*** 1,50 ****
  # vst~ - VST plugin external for PD
- 
  # based on the work of Jarno SeppŠnen and Mark Williamson
- 
  #
- 
  # Copyright (c)Thomas Grill (xovo at gmx.net)
- 
  # For information on usage and redistribution, and for a DISCLAIMER OF ALL
- 
  # WARRANTIES, see the file, "license.txt," in this distribution.  
- 
  #
  
  
- 
- 
- 
  # where is PD?
- 
  PDPATH=c:\programme\audio\pd		
  
- 
- 
  # where do the flext libraries reside?
- 
  FLEXTPATH=$(PDPATH)\flext
  
- 
- 
  # where is MS VC++?
! 
! MSVCPATH=c:\programme\prog\microsoft visual studio\VC98
! 
! 
! 
  
  
  # where should the external be built?
- 
  OUTPATH=pd-msvc
  
- 
- 
  # where should the external be installed?
- 
  # (leave blank to omit installation)
- 
  INSTDIR=$(PDPATH)\extra
- 
--- 1,26 ----
  # vst~ - VST plugin external for PD
  # based on the work of Jarno SeppŠnen and Mark Williamson
  #
  # Copyright (c)Thomas Grill (xovo at gmx.net)
  # For information on usage and redistribution, and for a DISCLAIMER OF ALL
  # WARRANTIES, see the file, "license.txt," in this distribution.  
  #
  
  
  # where is PD?
  PDPATH=c:\programme\audio\pd		
  
  # where do the flext libraries reside?
  FLEXTPATH=$(PDPATH)\flext
  
  # where is MS VC++?
! # (only necessary if not run from within the build environment)
! # MSVCPATH=c:\programme\prog\microsoft visual studio\VC98
  
  
  # where should the external be built?
  OUTPATH=pd-msvc
  
  # where should the external be installed?
  # (leave blank to omit installation)
  INSTDIR=$(PDPATH)\extra

Index: makefile.pd-msvc
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/vst/makefile.pd-msvc,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** makefile.pd-msvc	17 Mar 2003 04:41:58 -0000	1.3
--- makefile.pd-msvc	10 Nov 2003 03:42:03 -0000	1.4
***************
*** 1,6 ****
! # FFTease - A set of Live Spectral Processors
! # Originally written by Eric Lyon and Christopher Penrose for the Max/MSP platform
  # 
! # Copyright (c)Thomas Grill (xovo at gmx.net)
  # For information on usage and redistribution, and for a DISCLAIMER OF ALL
  # WARRANTIES, see the file, "license.txt," in this distribution.  
--- 1,6 ----
! # vst~ - VST plugin external for PD
! # based on the work of Jarno Seppänen and Mark Williamson
  # 
! # Copyright (c) Thomas Grill (xovo at gmx.net)
  # For information on usage and redistribution, and for a DISCLAIMER OF ALL
  # WARRANTIES, see the file, "license.txt," in this distribution.  
***************
*** 17,27 ****
  # includes
  INCPATH=/I"$(MSVCPATH)\include" /I"$(MSVCPATH)\mfc\include" /I"$(PDPATH)\src" /I"$(FLEXTPATH)"
! LIBPATH=/LIBPATH:"$(MSVCPATH)\lib" /LIBPATH:"$(MSVCPATH)\mfc\lib" /LIBPATH:"$(PDPATH)\bin" /LIBPATH:"$(FLEXTPATH)"
! LIBS=pd.lib pthreadVC.lib flext_t-pdwin.lib 
  
  # compiler definitions and flags
! DEFS=/DFLEXT_SYS=2 /DFLEXT_THREADS
  
! CFLAGS=/GR- /GX- /GD /G6 /Ox /MT
  
  # the rest can stay untouched
--- 17,28 ----
  # includes
  INCPATH=/I"$(MSVCPATH)\include" /I"$(MSVCPATH)\mfc\include" /I"$(PDPATH)\src" /I"$(FLEXTPATH)"
! LIBPATH=/LIBPATH:"$(PDPATH)\bin" /LIBPATH:"$(FLEXTPATH)" /LIBPATH:"$(MSVCPATH)\lib" /LIBPATH:"$(MSVCPATH)\mfc\lib" 
! LIBS=pd.lib pthreadVC.lib flext_t-pdwin.lib # DelayImp.lib
  
  # compiler definitions and flags
! DEFS=/D_USRDLL /D_WINDLL /D_MBCS /DFLEXT_SYS=2 /DFLEXT_THREADS
  
! CFLAGS=/G6 /Ox /MT /EHsc 
! # LDFLAGS=/DELAYLOAD:OleAcc.dll
  
  # the rest can stay untouched
***************
*** 61,65 ****
  $(OUTPATH)\$(NAME).dll: $(OBJS)
  	cd $(OUTPATH)
! 	link /DLL /out:$(NAME).dll /INCREMENTAL:NO $** $(LIBS) $(LIBPATH)
  	@-del *.exp
  	@-del *.lib
--- 62,66 ----
  $(OUTPATH)\$(NAME).dll: $(OBJS)
  	cd $(OUTPATH)
! 	link /DLL $(LDFLAGS) /out:$(NAME).dll /INCREMENTAL:NO $** $(LIBS) $(LIBPATH)
  	@-del *.exp
  	@-del *.lib

Index: vst.vcproj
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/vst/vst.vcproj,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** vst.vcproj	29 Oct 2003 03:41:36 -0000	1.4
--- vst.vcproj	10 Nov 2003 03:42:03 -0000	1.5
***************
*** 34,38 ****
  				RuntimeLibrary="0"
  				EnableFunctionLevelLinking="TRUE"
! 				UsePrecompiledHeader="2"
  				WarningLevel="3"
  				SuppressStartupBanner="TRUE"
--- 34,38 ----
  				RuntimeLibrary="0"
  				EnableFunctionLevelLinking="TRUE"
! 				UsePrecompiledHeader="0"
  				WarningLevel="3"
  				SuppressStartupBanner="TRUE"






More information about the Pd-cvs mailing list