aboutsummaryrefslogtreecommitdiff
path: root/iemlib2/src/VC7
diff options
context:
space:
mode:
authormusil <tmusil@users.sourceforge.net>2011-06-29 18:30:17 +0000
committermusil <tmusil@users.sourceforge.net>2011-06-29 18:30:17 +0000
commit4c69022f85bc5eed386b739d8c19b2be405f086c (patch)
tree7f8dbef439b84681e244e9c9a5414f2196598822 /iemlib2/src/VC7
parentf1d02c578de24a0fac036cf0253dfec3627b9be8 (diff)
added 3 folders for vcc 6, 7 and 9. to compile the file, first copy the stuff out of one of the folders to .. and then do it.
svn path=/trunk/externals/iemlib/; revision=15124
Diffstat (limited to 'iemlib2/src/VC7')
-rw-r--r--iemlib2/src/VC7/iemlib2.vcproj52
-rw-r--r--iemlib2/src/VC7/makefile_vc7proj71
2 files changed, 123 insertions, 0 deletions
diff --git a/iemlib2/src/VC7/iemlib2.vcproj b/iemlib2/src/VC7/iemlib2.vcproj
new file mode 100644
index 0000000..a49d2df
--- /dev/null
+++ b/iemlib2/src/VC7/iemlib2.vcproj
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="7.10"
+ Name="iemlib1"
+ ProjectGUID="{6A44952F-0D55-44EE-9032-928368583BEC}"
+ SccProjectName=""
+ SccLocalPath=""
+ Keyword="MakeFileProj">
+ <Platforms>
+ <Platform
+ Name="Win32"/>
+ </Platforms>
+ <Configurations>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory=".\Debug"
+ IntermediateDirectory=".\Debug"
+ ConfigurationType="0"
+ ATLMinimizesCRunTimeLibraryUsage="FALSE">
+ <Tool
+ Name="VCNMakeTool"
+ BuildCommandLine="NMAKE /f makefile_vc7proj"
+ ReBuildCommandLine="NMAKE /f makefile_vc7proj /a"
+ Output="iemlib1.exe"/>
+ </Configuration>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory=".\Release"
+ IntermediateDirectory=".\Release"
+ ConfigurationType="0"
+ ATLMinimizesCRunTimeLibraryUsage="FALSE">
+ <Tool
+ Name="VCNMakeTool"
+ BuildCommandLine="NMAKE /f makefile_vc7proj"
+ ReBuildCommandLine="NMAKE /f makefile_vc7proj /a"
+ Output="iemlib1.exe"/>
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <File
+ RelativePath="iemlib1.bsc">
+ </File>
+ <File
+ RelativePath="makefile_vc7proj">
+ </File>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>
diff --git a/iemlib2/src/VC7/makefile_vc7proj b/iemlib2/src/VC7/makefile_vc7proj
new file mode 100644
index 0000000..527f4df
--- /dev/null
+++ b/iemlib2/src/VC7/makefile_vc7proj
@@ -0,0 +1,71 @@
+TARGET = iemlib2
+
+all: ..\$(TARGET).dll
+
+VIS_CPP_PATH = "C:\Programme\Microsoft Visual Studio .NET 2003\Vc7"
+VIS_SDK_PATH = "C:\Programme\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK"
+PD_INST_PATH = "C:\Programme\pd-0.42-5"
+PD_WIN_INCLUDE_PATH = /I. /I$(PD_INST_PATH)\src /I$(VIS_CPP_PATH)\include
+PD_WIN_C_FLAGS = /nologo /W3 /WX /DMSW /DNT /DPD /DWIN32 /DWINDOWS /DHAVE_G_CANVAS_H /Ox -D_CRT_SECURE_NO_WARNINGS
+PD_WIN_L_FLAGS = /nologo
+
+PD_WIN_LIB = /NODEFAULTLIB:libcmt /NODEFAULTLIB:oldnames /NODEFAULTLIB:kernel32 \
+ $(VIS_CPP_PATH)\lib\libcmt.lib \
+ $(VIS_CPP_PATH)\lib\oldnames.lib \
+ $(VIS_SDK_PATH)\lib\kernel32.lib \
+ $(PD_INST_PATH)\bin\pd.lib
+
+SRC = add2_comma.c \
+ aspeedlim.c \
+ bpe.c \
+ dollarg.c \
+ exp_inc.c \
+ fade~.c \
+ float24.c \
+ iem_alisttosym.c \
+ iem_anything.c \
+ iem_append.c \
+ iem_blocksize~.c \
+ iem_i_route.c \
+ iem_pbank_csv.c \
+ iem_prepend.c \
+ iem_receive.c \
+ iem_route.c \
+ iem_samplerate~.c \
+ iem_sel_any.c \
+ iem_send.c \
+ iem_symtoalist.c \
+ init.c \
+ LFO_noise~.c \
+ list2send.c \
+ m2f~.c \
+ mergefilename.c \
+ modulo_counter.c \
+ parentdollarzero.c \
+ post_netreceive.c \
+ pre_inlet.c \
+ prepend_ascii.c \
+ protect_against_open.c \
+ receive2list.c \
+ round_zero.c \
+ speedlim.c \
+ splitfilename.c \
+ stripfilename.c \
+ toggle_mess.c \
+ transf_fader.c \
+ unsymbol.c \
+ wrap.c \
+ $(TARGET).c
+
+
+OBJ = $(SRC:.c=.obj)
+
+.c.obj:
+ cl $(PD_WIN_C_FLAGS) $(PD_WIN_INCLUDE_PATH) /c $*.c
+
+..\$(TARGET).dll: $(OBJ)
+ link $(PD_WIN_L_FLAGS) /dll /export:$(TARGET)_setup \
+ /out:..\$(TARGET).dll $(OBJ) $(PD_WIN_LIB)
+
+clean:
+ del *.obj