mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-16 17:11:53 -05:00
- This looks specific to windows only, however imported for completeness
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/trunk@250 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
e8dbf4c446
commit
c6100ba7aa
78
portaudio-v19/build/dev-cpp/Makefile-dll
Normal file
78
portaudio-v19/build/dev-cpp/Makefile-dll
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
# Project: portaudio-dll
|
||||||
|
# Makefile created by Dev-C++ 4.9.8.2
|
||||||
|
|
||||||
|
CPP = g++.exe
|
||||||
|
CC = gcc.exe
|
||||||
|
WINDRES = windres.exe
|
||||||
|
RES =
|
||||||
|
OBJ = ./pa_skeleton.o ./pa_stream.o ./pa_trace.o ./pa_allocation.o ./pa_converters.o ./pa_cpuload.o ./pa_dither.o ./pa_front.o ./pa_process.o ./pa_asio.o ./pa_win_util.o ./pa_win_hostapis.o ./pa_win_ds.o ./dsound_wrapper.o ./pa_win_wmme.o ./iasiothiscallresolver.o $(RES)
|
||||||
|
LINKOBJ = ./pa_skeleton.o ./pa_stream.o ./pa_trace.o ./pa_allocation.o ./pa_converters.o ./pa_cpuload.o ./pa_dither.o ./pa_front.o ./pa_process.o ./pa_asio.o ./pa_win_util.o ./pa_win_hostapis.o ./pa_win_ds.o ./dsound_wrapper.o ./pa_win_wmme.o ./iasiothiscallresolver.o $(RES)
|
||||||
|
LIBS = -L"C:/Dev-CPP/lib" -fmessage-length=0 --no-export-all-symbols --add-stdcall-alias ../../../asiosdk2/asiosdk2.a -lkernel32 -luser32 -lgdi32 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 -loleaut32 -luuid -lodbc32 -lodbccp32 -lwinmm -O3 -s
|
||||||
|
INCS = -I"C:/Dev-CPP/include" -I"../../../asiosdk2" -I"../../../asiosdk2/common" -I"../../../asiosdk2/host" -I"../../../asiosdk2/host/pc" -I"../../pa_common"
|
||||||
|
CXXINCS = -I"C:/Dev-CPP/include/c++" -I"C:/Dev-CPP/include/c++/mingw32" -I"C:/Dev-CPP/include/c++/backward" -I"C:/Dev-CPP/include" -I"../../../asiosdk2" -I"../../../asiosdk2/common" -I"../../../asiosdk2/host" -I"../../../asiosdk2/host/pc" -I"../../pa_common"
|
||||||
|
BIN = portaudio-dll.dll
|
||||||
|
CXXFLAGS = $(CXXINCS)-O3 -fmessage-length=0 -Wall
|
||||||
|
CFLAGS = $(INCS)-DBUILDING_DLL=1 -O3 -fmessage-length=0 -Wall
|
||||||
|
|
||||||
|
.PHONY: all all-before all-after clean clean-custom
|
||||||
|
|
||||||
|
all: all-before portaudio-dll.dll all-after
|
||||||
|
|
||||||
|
|
||||||
|
clean: clean-custom
|
||||||
|
rm -f $(OBJ) $(BIN)
|
||||||
|
|
||||||
|
DLLWRAP=dllwrap.exe
|
||||||
|
DEFFILE=libportaudio-dll.def
|
||||||
|
STATICLIB=libportaudio-dll.a
|
||||||
|
|
||||||
|
$(BIN): $(LINKOBJ)
|
||||||
|
$(DLLWRAP) --output-def $(DEFFILE) --driver-name c++ --implib $(STATICLIB) $(LINKOBJ) $(LIBS) -o $(BIN)
|
||||||
|
|
||||||
|
./pa_skeleton.o: ../../pa_common/pa_skeleton.c
|
||||||
|
$(CPP) -c ../../pa_common/pa_skeleton.c -o ./pa_skeleton.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_stream.o: ../../pa_common/pa_stream.c
|
||||||
|
$(CPP) -c ../../pa_common/pa_stream.c -o ./pa_stream.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_trace.o: ../../pa_common/pa_trace.c
|
||||||
|
$(CPP) -c ../../pa_common/pa_trace.c -o ./pa_trace.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_allocation.o: ../../pa_common/pa_allocation.c
|
||||||
|
$(CPP) -c ../../pa_common/pa_allocation.c -o ./pa_allocation.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_converters.o: ../../pa_common/pa_converters.c
|
||||||
|
$(CPP) -c ../../pa_common/pa_converters.c -o ./pa_converters.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_cpuload.o: ../../pa_common/pa_cpuload.c
|
||||||
|
$(CPP) -c ../../pa_common/pa_cpuload.c -o ./pa_cpuload.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_dither.o: ../../pa_common/pa_dither.c
|
||||||
|
$(CPP) -c ../../pa_common/pa_dither.c -o ./pa_dither.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_front.o: ../../pa_common/pa_front.c
|
||||||
|
$(CPP) -c ../../pa_common/pa_front.c -o ./pa_front.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_process.o: ../../pa_common/pa_process.c
|
||||||
|
$(CPP) -c ../../pa_common/pa_process.c -o ./pa_process.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_asio.o: ../../pa_asio/pa_asio.cpp
|
||||||
|
$(CPP) -c ../../pa_asio/pa_asio.cpp -o ./pa_asio.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_win_util.o: ../pa_win_util.c
|
||||||
|
$(CPP) -c ../pa_win_util.c -o ./pa_win_util.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_win_hostapis.o: ../pa_win_hostapis.c
|
||||||
|
$(CPP) -c ../pa_win_hostapis.c -o ./pa_win_hostapis.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_win_ds.o: ../../pa_win_ds/pa_win_ds.c
|
||||||
|
$(CPP) -c ../../pa_win_ds/pa_win_ds.c -o ./pa_win_ds.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./dsound_wrapper.o: ../../pa_win_ds/dsound_wrapper.c
|
||||||
|
$(CPP) -c ../../pa_win_ds/dsound_wrapper.c -o ./dsound_wrapper.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_win_wmme.o: ../../pa_win_wmme/pa_win_wmme.c
|
||||||
|
$(CPP) -c ../../pa_win_wmme/pa_win_wmme.c -o ./pa_win_wmme.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./iasiothiscallresolver.o: ../../pa_asio/iasiothiscallresolver.cpp
|
||||||
|
$(CPP) -c ../../pa_asio/iasiothiscallresolver.cpp -o ./iasiothiscallresolver.o $(CXXFLAGS)
|
75
portaudio-v19/build/dev-cpp/Makefile-static
Normal file
75
portaudio-v19/build/dev-cpp/Makefile-static
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
# Project: portaudio-static
|
||||||
|
# Makefile created by Dev-C++ 4.9.8.2
|
||||||
|
|
||||||
|
CPP = g++.exe
|
||||||
|
CC = gcc.exe
|
||||||
|
WINDRES = windres.exe
|
||||||
|
RES =
|
||||||
|
OBJ = ./pa_skeleton.o ./pa_stream.o ./pa_trace.o ./pa_allocation.o ./pa_converters.o ./pa_cpuload.o ./pa_dither.o ./pa_front.o ./pa_process.o ./pa_asio.o ./pa_win_util.o ./pa_win_hostapis.o ./pa_win_ds.o ./dsound_wrapper.o ./pa_win_wmme.o ./iasiothiscallresolver.o $(RES)
|
||||||
|
LINKOBJ = ./pa_skeleton.o ./pa_stream.o ./pa_trace.o ./pa_allocation.o ./pa_converters.o ./pa_cpuload.o ./pa_dither.o ./pa_front.o ./pa_process.o ./pa_asio.o ./pa_win_util.o ./pa_win_hostapis.o ./pa_win_ds.o ./dsound_wrapper.o ./pa_win_wmme.o ./iasiothiscallresolver.o $(RES)
|
||||||
|
LIBS = -L"C:/Dev-CPP/lib" -fmessage-length=0 -O3 -s
|
||||||
|
INCS = -I"C:/Dev-CPP/include" -I"../../../asiosdk2" -I"../../../asiosdk2/common" -I"../../../asiosdk2/host" -I"../../../asiosdk2/host/pc" -I"../../pa_common"
|
||||||
|
CXXINCS = -I"C:/Dev-CPP/include/c++" -I"C:/Dev-CPP/include/c++/mingw32" -I"C:/Dev-CPP/include/c++/backward" -I"C:/Dev-CPP/include" -I"../../../asiosdk2" -I"../../../asiosdk2/common" -I"../../../asiosdk2/host" -I"../../../asiosdk2/host/pc" -I"../../pa_common"
|
||||||
|
BIN = portaudio-static.a
|
||||||
|
CXXFLAGS = $(CXXINCS)-O3 -fmessage-length=0 -Wall
|
||||||
|
CFLAGS = $(INCS)-O3 -fmessage-length=0 -Wall
|
||||||
|
|
||||||
|
.PHONY: all all-before all-after clean clean-custom
|
||||||
|
|
||||||
|
all: all-before portaudio-static.a all-after
|
||||||
|
|
||||||
|
|
||||||
|
clean: clean-custom
|
||||||
|
rm -f $(OBJ) $(BIN)
|
||||||
|
|
||||||
|
$(BIN): $(LINKOBJ)
|
||||||
|
ar r $(BIN) $(LINKOBJ)
|
||||||
|
ranlib $(BIN)
|
||||||
|
|
||||||
|
./pa_skeleton.o: ../../pa_common/pa_skeleton.c
|
||||||
|
$(CPP) -c ../../pa_common/pa_skeleton.c -o ./pa_skeleton.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_stream.o: ../../pa_common/pa_stream.c
|
||||||
|
$(CPP) -c ../../pa_common/pa_stream.c -o ./pa_stream.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_trace.o: ../../pa_common/pa_trace.c
|
||||||
|
$(CPP) -c ../../pa_common/pa_trace.c -o ./pa_trace.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_allocation.o: ../../pa_common/pa_allocation.c
|
||||||
|
$(CPP) -c ../../pa_common/pa_allocation.c -o ./pa_allocation.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_converters.o: ../../pa_common/pa_converters.c
|
||||||
|
$(CPP) -c ../../pa_common/pa_converters.c -o ./pa_converters.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_cpuload.o: ../../pa_common/pa_cpuload.c
|
||||||
|
$(CPP) -c ../../pa_common/pa_cpuload.c -o ./pa_cpuload.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_dither.o: ../../pa_common/pa_dither.c
|
||||||
|
$(CPP) -c ../../pa_common/pa_dither.c -o ./pa_dither.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_front.o: ../../pa_common/pa_front.c
|
||||||
|
$(CPP) -c ../../pa_common/pa_front.c -o ./pa_front.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_process.o: ../../pa_common/pa_process.c
|
||||||
|
$(CPP) -c ../../pa_common/pa_process.c -o ./pa_process.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_asio.o: ../../pa_asio/pa_asio.cpp
|
||||||
|
$(CPP) -c ../../pa_asio/pa_asio.cpp -o ./pa_asio.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_win_util.o: ../pa_win_util.c
|
||||||
|
$(CPP) -c ../pa_win_util.c -o ./pa_win_util.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_win_hostapis.o: ../pa_win_hostapis.c
|
||||||
|
$(CPP) -c ../pa_win_hostapis.c -o ./pa_win_hostapis.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_win_ds.o: ../../pa_win_ds/pa_win_ds.c
|
||||||
|
$(CPP) -c ../../pa_win_ds/pa_win_ds.c -o ./pa_win_ds.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./dsound_wrapper.o: ../../pa_win_ds/dsound_wrapper.c
|
||||||
|
$(CPP) -c ../../pa_win_ds/dsound_wrapper.c -o ./dsound_wrapper.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./pa_win_wmme.o: ../../pa_win_wmme/pa_win_wmme.c
|
||||||
|
$(CPP) -c ../../pa_win_wmme/pa_win_wmme.c -o ./pa_win_wmme.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
./iasiothiscallresolver.o: ../../pa_asio/iasiothiscallresolver.cpp
|
||||||
|
$(CPP) -c ../../pa_asio/iasiothiscallresolver.cpp -o ./iasiothiscallresolver.o $(CXXFLAGS)
|
209
portaudio-v19/build/dev-cpp/portaudio-dll.dev
Normal file
209
portaudio-v19/build/dev-cpp/portaudio-dll.dev
Normal file
@ -0,0 +1,209 @@
|
|||||||
|
[Project]
|
||||||
|
FileName=portaudio-dll.dev
|
||||||
|
Name=portaudio-dll
|
||||||
|
UnitCount=16
|
||||||
|
Type=3
|
||||||
|
Ver=1
|
||||||
|
ObjFiles=
|
||||||
|
Includes=..\..\..\asiosdk2;..\..\..\asiosdk2\common;..\..\..\asiosdk2\host;..\..\..\asiosdk2\host\pc;..\..\pa_common
|
||||||
|
Libs=
|
||||||
|
PrivateResource=
|
||||||
|
ResourceIncludes=
|
||||||
|
MakeIncludes=
|
||||||
|
Compiler=-DBUILDING_DLL=1_@@_-O3_@@_
|
||||||
|
CppCompiler=-O3_@@_
|
||||||
|
Linker=--no-export-all-symbols --add-stdcall-alias_@@_../../../asiosdk2/asiosdk2.a_@@_-lkernel32 -luser32 -lgdi32 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 -loleaut32 -luuid -lodbc32 -lodbccp32 -lwinmm_@@_-O3 -s_@@_
|
||||||
|
IsCpp=1
|
||||||
|
Icon=
|
||||||
|
ExeOutput=.
|
||||||
|
ObjectOutput=.
|
||||||
|
OverrideOutput=0
|
||||||
|
OverrideOutputName=portaudio.a
|
||||||
|
HostApplication=
|
||||||
|
Folders=
|
||||||
|
CommandLine=
|
||||||
|
IncludeVersionInfo=0
|
||||||
|
SupportXPThemes=0
|
||||||
|
CompilerSet=0
|
||||||
|
CompilerSettings=0000000000000000000
|
||||||
|
UseCustomMakefile=0
|
||||||
|
CustomMakefile=
|
||||||
|
|
||||||
|
[Unit1]
|
||||||
|
FileName=..\..\pa_common\pa_skeleton.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_skeleton.c -o ./pa_skeleton.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit2]
|
||||||
|
FileName=..\..\pa_common\pa_stream.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_stream.c -o ./pa_stream.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit3]
|
||||||
|
FileName=..\..\pa_common\pa_trace.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_trace.c -o ./pa_trace.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit4]
|
||||||
|
FileName=..\..\pa_common\pa_allocation.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_allocation.c -o ./pa_allocation.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit5]
|
||||||
|
FileName=..\..\pa_common\pa_converters.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_converters.c -o ./pa_converters.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit6]
|
||||||
|
FileName=..\..\pa_common\pa_cpuload.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_cpuload.c -o ./pa_cpuload.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit7]
|
||||||
|
FileName=..\..\pa_common\pa_dither.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_dither.c -o ./pa_dither.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit8]
|
||||||
|
FileName=..\..\pa_common\pa_front.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_front.c -o ./pa_front.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit9]
|
||||||
|
FileName=..\..\pa_common\pa_process.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_process.c -o ./pa_process.o $(CFLAGS)
|
||||||
|
|
||||||
|
[VersionInfo]
|
||||||
|
Major=0
|
||||||
|
Minor=1
|
||||||
|
Release=1
|
||||||
|
Build=1
|
||||||
|
LanguageID=1033
|
||||||
|
CharsetID=1252
|
||||||
|
CompanyName=
|
||||||
|
FileVersion=
|
||||||
|
FileDescription=Developed using the Dev-C++ IDE
|
||||||
|
InternalName=
|
||||||
|
LegalCopyright=
|
||||||
|
LegalTrademarks=
|
||||||
|
OriginalFilename=
|
||||||
|
ProductName=
|
||||||
|
ProductVersion=
|
||||||
|
AutoIncBuildNr=0
|
||||||
|
|
||||||
|
[Unit10]
|
||||||
|
FileName=..\..\pa_asio\pa_asio.cpp
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CPP) -c pa_asio.cpp -o ./pa_asio.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
[Unit11]
|
||||||
|
FileName=..\pa_win_util.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_win_util.c -o ./pa_win_util.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit12]
|
||||||
|
FileName=..\pa_win_hostapis.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_win_hostapis.c -o ./pa_win_hostapis.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit13]
|
||||||
|
FileName=..\..\pa_win_ds\pa_win_ds.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_win_ds.c -o ./pa_win_ds.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit14]
|
||||||
|
FileName=..\..\pa_win_ds\dsound_wrapper.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c dsound_wrapper.c -o ./dsound_wrapper.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit15]
|
||||||
|
FileName=..\..\pa_win_wmme\pa_win_wmme.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_win_wmme.c -o ./pa_win_wmme.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit16]
|
||||||
|
FileName=..\..\pa_asio\iasiothiscallresolver.cpp
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=
|
||||||
|
|
209
portaudio-v19/build/dev-cpp/portaudio-static.dev
Normal file
209
portaudio-v19/build/dev-cpp/portaudio-static.dev
Normal file
@ -0,0 +1,209 @@
|
|||||||
|
[Project]
|
||||||
|
FileName=portaudio-static.dev
|
||||||
|
Name=portaudio-static
|
||||||
|
UnitCount=16
|
||||||
|
Type=2
|
||||||
|
Ver=1
|
||||||
|
ObjFiles=
|
||||||
|
Includes=..\..\..\asiosdk2;..\..\..\asiosdk2\common;..\..\..\asiosdk2\host;..\..\..\asiosdk2\host\pc;..\..\pa_common
|
||||||
|
Libs=
|
||||||
|
PrivateResource=
|
||||||
|
ResourceIncludes=
|
||||||
|
MakeIncludes=
|
||||||
|
Compiler=-O3_@@_
|
||||||
|
CppCompiler=-O3_@@_
|
||||||
|
Linker=-O3 -s_@@_
|
||||||
|
IsCpp=1
|
||||||
|
Icon=
|
||||||
|
ExeOutput=.
|
||||||
|
ObjectOutput=.
|
||||||
|
OverrideOutput=0
|
||||||
|
OverrideOutputName=portaudio.a
|
||||||
|
HostApplication=
|
||||||
|
Folders=
|
||||||
|
CommandLine=
|
||||||
|
IncludeVersionInfo=0
|
||||||
|
SupportXPThemes=0
|
||||||
|
CompilerSet=0
|
||||||
|
CompilerSettings=0000000000000000000
|
||||||
|
UseCustomMakefile=0
|
||||||
|
CustomMakefile=
|
||||||
|
|
||||||
|
[Unit1]
|
||||||
|
FileName=..\..\pa_common\pa_skeleton.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_skeleton.c -o ./pa_skeleton.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit2]
|
||||||
|
FileName=..\..\pa_common\pa_stream.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_stream.c -o ./pa_stream.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit3]
|
||||||
|
FileName=..\..\pa_common\pa_trace.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_trace.c -o ./pa_trace.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit4]
|
||||||
|
FileName=..\..\pa_common\pa_allocation.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_allocation.c -o ./pa_allocation.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit5]
|
||||||
|
FileName=..\..\pa_common\pa_converters.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_converters.c -o ./pa_converters.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit6]
|
||||||
|
FileName=..\..\pa_common\pa_cpuload.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_cpuload.c -o ./pa_cpuload.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit7]
|
||||||
|
FileName=..\..\pa_common\pa_dither.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_dither.c -o ./pa_dither.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit8]
|
||||||
|
FileName=..\..\pa_common\pa_front.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_front.c -o ./pa_front.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit9]
|
||||||
|
FileName=..\..\pa_common\pa_process.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_process.c -o ./pa_process.o $(CFLAGS)
|
||||||
|
|
||||||
|
[VersionInfo]
|
||||||
|
Major=0
|
||||||
|
Minor=1
|
||||||
|
Release=1
|
||||||
|
Build=1
|
||||||
|
LanguageID=1033
|
||||||
|
CharsetID=1252
|
||||||
|
CompanyName=
|
||||||
|
FileVersion=
|
||||||
|
FileDescription=Developed using the Dev-C++ IDE
|
||||||
|
InternalName=
|
||||||
|
LegalCopyright=
|
||||||
|
LegalTrademarks=
|
||||||
|
OriginalFilename=
|
||||||
|
ProductName=
|
||||||
|
ProductVersion=
|
||||||
|
AutoIncBuildNr=0
|
||||||
|
|
||||||
|
[Unit10]
|
||||||
|
FileName=..\..\pa_asio\pa_asio.cpp
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CPP) -c pa_asio.cpp -o ./pa_asio.o $(CXXFLAGS)
|
||||||
|
|
||||||
|
[Unit11]
|
||||||
|
FileName=..\..\pa_win\pa_win_util.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_win_util.c -o ./pa_win_util.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit12]
|
||||||
|
FileName=..\..\pa_win\pa_win_hostapis.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_win_hostapis.c -o ./pa_win_hostapis.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit13]
|
||||||
|
FileName=..\..\pa_win_ds\pa_win_ds.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_win_ds.c -o ./pa_win_ds.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit14]
|
||||||
|
FileName=..\..\pa_win_ds\dsound_wrapper.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c dsound_wrapper.c -o ./dsound_wrapper.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit15]
|
||||||
|
FileName=..\..\pa_win_wmme\pa_win_wmme.c
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=$(CC) -c pa_win_wmme.c -o ./pa_win_wmme.o $(CFLAGS)
|
||||||
|
|
||||||
|
[Unit16]
|
||||||
|
FileName=..\..\pa_asio\iasiothiscallresolver.cpp
|
||||||
|
CompileCpp=1
|
||||||
|
Folder=portaudio
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=
|
||||||
|
|
23
portaudio-v19/build/dev-cpp/readme.txt
Normal file
23
portaudio-v19/build/dev-cpp/readme.txt
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
From: "Peter L Jones"
|
||||||
|
Sent: Wednesday, September 17, 2003 5:18 AM
|
||||||
|
Subject: Dev-C++ project files
|
||||||
|
|
||||||
|
I attach two project files intended for portaudio/pa_win/dev-cpp (i.e. in
|
||||||
|
parallel with the msvc directory), if you want them. One is for a static
|
||||||
|
library build and one for a DLL. I've used the static library (in building
|
||||||
|
a single monolithic DLL) but I can't guarantee the DLL version will build a
|
||||||
|
working library (I think it's mostly there, though!).
|
||||||
|
|
||||||
|
I also attach the resulting makefiles, which may be of use to other MinGW
|
||||||
|
users.
|
||||||
|
|
||||||
|
They're rooted in the directory given above and drop their object and
|
||||||
|
library files in the same place. They assume the asiosdk2 files are in the
|
||||||
|
same directory as portaudio/ in a sub-directory called asiosdk2/. Oh! The
|
||||||
|
DLL is built against a static asiosdk2.a library... maybe not the best way
|
||||||
|
to do it... I ought to figure out how to link against a "home made" dll in
|
||||||
|
Dev-C++, I guess ;-)
|
||||||
|
|
||||||
|
Cheers,
|
||||||
|
|
||||||
|
-- Peter
|
159
portaudio-v19/build/msvc/Makefile.msvc
Normal file
159
portaudio-v19/build/msvc/Makefile.msvc
Normal file
@ -0,0 +1,159 @@
|
|||||||
|
# Portaudio v1.9-devel VC6 DLL makefile 1.0
|
||||||
|
#
|
||||||
|
# David Viens, davidv@plogue.com
|
||||||
|
# (im far from a VC6 makefile expert, so please bear with me :)
|
||||||
|
#
|
||||||
|
# For more info, look at readme.txt
|
||||||
|
#
|
||||||
|
#if you keep the ASIODIR as ".", it will use the SDK files that direclty in "pa_win/msvc" dir
|
||||||
|
ASIODIR=.
|
||||||
|
ASIOINC=/I ".\host" /I ".\host\pc" /I ".\common"
|
||||||
|
#
|
||||||
|
|
||||||
|
LIBZ=kernel32.lib user32.lib gdi32.lib wininet.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib winmm.lib dsound.lib dxguid.lib
|
||||||
|
|
||||||
|
CPP=cl.exe
|
||||||
|
LINK32=link.exe
|
||||||
|
|
||||||
|
#release
|
||||||
|
CFLAGS=/nologo /MD /W3 /GX /O2 /Ob2 /I "src" /I "Win32" /I "$(MSVCDir)\Include" /D "WIN32" /D "NDEBUG" /D "_USRDLL" /YX /FD
|
||||||
|
DLL_LINK_FLAGS= /nologo /dll /incremental:no /libpath:"$(MSVCDir)\Lib" $(LIBZ) /pdb:"portaudio.pdb" /implib:".\portaudio.lib" /machine:I386 /out:"portaudio.dll"
|
||||||
|
|
||||||
|
|
||||||
|
COMMONINC=/I "..\..\pa_common" /I "."
|
||||||
|
|
||||||
|
#====================================================================
|
||||||
|
# Targets
|
||||||
|
|
||||||
|
ALL : portaudio.dll
|
||||||
|
|
||||||
|
CLEAN :
|
||||||
|
-@erase "*.obj"
|
||||||
|
|
||||||
|
#====================================================================
|
||||||
|
|
||||||
|
|
||||||
|
LINK32_OBJS= \
|
||||||
|
".\pa_allocation.obj" \
|
||||||
|
".\pa_converters.obj" \
|
||||||
|
".\pa_x86_plain_converters.obj" \
|
||||||
|
# ".\pa_cppHelp.obj" \
|
||||||
|
".\pa_cpuload.obj" \
|
||||||
|
".\pa_dither.obj" \
|
||||||
|
".\pa_front.obj" \
|
||||||
|
".\pa_process.obj" \
|
||||||
|
".\pa_skeleton.obj" \
|
||||||
|
".\pa_stream.obj" \
|
||||||
|
".\pa_trace.obj" \
|
||||||
|
#
|
||||||
|
".\pa_win_hostapis.obj" \
|
||||||
|
".\pa_win_util.obj" \
|
||||||
|
#
|
||||||
|
".\pa_win_wmme.obj" \
|
||||||
|
#
|
||||||
|
".\pa_win_ds.obj" \
|
||||||
|
".\dsound_wrapper.obj" \
|
||||||
|
#
|
||||||
|
".\pa_asio.obj" \
|
||||||
|
#
|
||||||
|
".\asio.obj" \
|
||||||
|
".\ASIOConvertSamples.obj" \
|
||||||
|
".\asiodrivers.obj" \
|
||||||
|
".\asiolist.obj" \
|
||||||
|
".\combase.obj" \
|
||||||
|
".\debugmessage.obj" \
|
||||||
|
# ".\dllentry.obj" \
|
||||||
|
".\register.obj"
|
||||||
|
|
||||||
|
|
||||||
|
portaudio.dll : $(LINK32_OBJS) ".\portaudio.def"
|
||||||
|
$(LINK32) $(DLL_LINK_FLAGS) /def:".\portaudio.def" $(LINK32_OBJS)
|
||||||
|
|
||||||
|
#====================================================================
|
||||||
|
# asio files (need to agree to steinberg agreement)
|
||||||
|
# this makefile assumes all files have being copied in the pa_win/msvc dir (for now)
|
||||||
|
# see readme.txt for details
|
||||||
|
|
||||||
|
".\asio.obj" : ".\common\asio.cpp"
|
||||||
|
$(CPP) $(CFLAGS) $(ASIOINC) /Fo".\asio.obj" /c ".\common\asio.cpp"
|
||||||
|
|
||||||
|
".\ASIOConvertSamples.obj" : ".\host\ASIOConvertSamples.cpp"
|
||||||
|
$(CPP) $(CFLAGS) $(ASIOINC) /Fo".\ASIOConvertSamples.obj" /c ".\host\ASIOConvertSamples.cpp"
|
||||||
|
|
||||||
|
".\asiodrivers.obj" : ".\host\asiodrivers.cpp"
|
||||||
|
$(CPP) $(CFLAGS) $(ASIOINC) /Fo".\asiodrivers.obj" /c ".\host\asiodrivers.cpp"
|
||||||
|
|
||||||
|
".\asiolist.obj" : ".\host\pc\asiolist.cpp"
|
||||||
|
$(CPP) $(CFLAGS) $(ASIOINC) /Fo".\asiolist.obj" /c ".\host\pc\asiolist.cpp"
|
||||||
|
|
||||||
|
".\combase.obj" : ".\common\combase.cpp"
|
||||||
|
$(CPP) $(CFLAGS) $(ASIOINC) /Fo".\combase.obj" /c ".\common\combase.cpp"
|
||||||
|
|
||||||
|
".\debugmessage.obj" : ".\common\debugmessage.cpp"
|
||||||
|
$(CPP) $(CFLAGS) $(ASIOINC) /Fo".\debugmessage.obj" /c ".\common\debugmessage.cpp"
|
||||||
|
|
||||||
|
".\register.obj" : ".\common\register.cpp"
|
||||||
|
$(CPP) $(CFLAGS) $(ASIOINC) /Fo".\register.obj" /c ".\common\register.cpp"
|
||||||
|
|
||||||
|
#====================================================================
|
||||||
|
# Portaudio Common
|
||||||
|
#
|
||||||
|
".\pa_allocation.obj" : "..\..\pa_common\pa_allocation.c"
|
||||||
|
$(CPP) $(CFLAGS) $(COMMONINC) /Fo".\pa_allocation.obj" /c "..\..\pa_common\pa_allocation.c"
|
||||||
|
|
||||||
|
".\pa_converters.obj" : "..\..\pa_common\pa_converters.c"
|
||||||
|
$(CPP) $(CFLAGS) $(COMMONINC) /Fo".\pa_converters.obj" /c "..\..\pa_common\pa_converters.c"
|
||||||
|
|
||||||
|
".\pa_cppHelp.obj" : "..\..\pa_common\pa_cppHelp.cpp"
|
||||||
|
$(CPP) $(CFLAGS) $(COMMONINC) /Fo".\pa_cppHelp.obj" /c "..\..\pa_common\pa_cppHelp.cpp"
|
||||||
|
|
||||||
|
".\pa_cpuload.obj" : "..\..\pa_common\pa_cpuload.c"
|
||||||
|
$(CPP) $(CFLAGS) $(COMMONINC) /Fo".\pa_cpuload.obj" /c "..\..\pa_common\pa_cpuload.c"
|
||||||
|
|
||||||
|
".\pa_dither.obj" : "..\..\pa_common\pa_dither.c"
|
||||||
|
$(CPP) $(CFLAGS) $(COMMONINC) /Fo".\pa_dither.obj" /c "..\..\pa_common\pa_dither.c"
|
||||||
|
|
||||||
|
".\pa_front.obj" : "..\..\pa_common\pa_front.c"
|
||||||
|
$(CPP) $(CFLAGS) $(COMMONINC) /Fo".\pa_front.obj" /c "..\..\pa_common\pa_front.c"
|
||||||
|
|
||||||
|
".\pa_process.obj" : "..\..\pa_common\pa_process.c"
|
||||||
|
$(CPP) $(CFLAGS) $(COMMONINC) /Fo".\pa_process.obj" /c "..\..\pa_common\pa_process.c"
|
||||||
|
|
||||||
|
".\pa_skeleton.obj" : "..\..\pa_common\pa_skeleton.c"
|
||||||
|
$(CPP) $(CFLAGS) $(COMMONINC) /Fo".\pa_skeleton.obj" /c "..\..\pa_common\pa_skeleton.c"
|
||||||
|
|
||||||
|
".\pa_stream.obj" : "..\..\pa_common\pa_stream.c"
|
||||||
|
$(CPP) $(CFLAGS) $(COMMONINC) /Fo".\pa_stream.obj" /c "..\..\pa_common\pa_stream.c"
|
||||||
|
|
||||||
|
".\pa_trace.obj" : "..\..\pa_common\pa_trace.c"
|
||||||
|
$(CPP) $(CFLAGS) $(COMMONINC) /Fo".\pa_trace.obj" /c "..\..\pa_common\pa_trace.c"
|
||||||
|
|
||||||
|
#====================================================================
|
||||||
|
# Portaudio implementations
|
||||||
|
#
|
||||||
|
|
||||||
|
".\pa_win_hostapis.obj" : "..\..\pa_win\pa_win_hostapis.c"
|
||||||
|
$(CPP) $(CFLAGS) $(COMMONINC) /Fo".\pa_win_hostapis.obj" /c "..\..\pa_win\pa_win_hostapis.c"
|
||||||
|
|
||||||
|
".\pa_win_util.obj" : "..\..\pa_win\pa_win_util.c"
|
||||||
|
$(CPP) $(CFLAGS) $(COMMONINC) /Fo".\pa_win_util.obj" /c "..\..\pa_win\pa_win_util.c"
|
||||||
|
|
||||||
|
".\pa_x86_plain_converters.obj" : "..\..\pa_win\pa_x86_plain_converters.c"
|
||||||
|
$(CPP) $(CFLAGS) $(COMMONINC) /Fo".\pa_x86_plain_converters.obj" /c "..\..\pa_win\pa_x86_plain_converters.c"
|
||||||
|
|
||||||
|
".\pa_asio.obj" : "..\..\pa_asio\pa_asio.cpp"
|
||||||
|
$(CPP) $(CFLAGS) $(ASIOINC) $(COMMONINC) /Fo".\pa_asio.obj" /c "..\..\pa_asio\pa_asio.cpp"
|
||||||
|
|
||||||
|
".\pa_win_wmme.obj" : "..\..\pa_win_wmme\pa_win_wmme.c"
|
||||||
|
$(CPP) $(CFLAGS) $(COMMONINC) /Fo".\pa_win_wmme.obj" /c "..\..\pa_win_wmme\pa_win_wmme.c"
|
||||||
|
|
||||||
|
".\pa_win_ds.obj" : "..\..\pa_win_ds\pa_win_ds.c"
|
||||||
|
$(CPP) $(CFLAGS) $(COMMONINC) /Fo".\pa_win_ds.obj" /c "..\..\pa_win_ds\pa_win_ds.c"
|
||||||
|
|
||||||
|
".\dsound_wrapper.obj" : "..\..\pa_win_ds\dsound_wrapper.c"
|
||||||
|
$(CPP) $(CFLAGS) $(COMMONINC) /Fo".\dsound_wrapper.obj" /c "..\..\pa_win_ds\dsound_wrapper.c"
|
||||||
|
|
||||||
|
|
||||||
|
# End of Makefile
|
||||||
|
#====================================================================
|
||||||
|
#
|
7
portaudio-v19/build/msvc/clean.bat
Executable file
7
portaudio-v19/build/msvc/clean.bat
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
del *.obj
|
||||||
|
del *.dll
|
||||||
|
del *.lib
|
||||||
|
del *.exp
|
||||||
|
del *.pch
|
||||||
|
del *.idb
|
||||||
|
|
8
portaudio-v19/build/msvc/make.bat
Executable file
8
portaudio-v19/build/msvc/make.bat
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
CALL C:\progra~1\micros~2\VC98\bin\vcvars32
|
||||||
|
del *.dll
|
||||||
|
del *.lib
|
||||||
|
nmake Makefile.msvc
|
||||||
|
del *.obj
|
||||||
|
del *.exp
|
||||||
|
del *.pch
|
||||||
|
del *.idb
|
43
portaudio-v19/build/msvc/portaudio.def
Normal file
43
portaudio-v19/build/msvc/portaudio.def
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
LIBRARY portaudio.dll
|
||||||
|
EXPORTS
|
||||||
|
|
||||||
|
;
|
||||||
|
Pa_GetVersion @1
|
||||||
|
Pa_GetVersionText @2
|
||||||
|
Pa_GetErrorText @3
|
||||||
|
Pa_Initialize @4
|
||||||
|
Pa_Terminate @5
|
||||||
|
Pa_GetHostApiCount @6
|
||||||
|
Pa_GetDefaultHostApi @7
|
||||||
|
Pa_GetHostApiInfo @8
|
||||||
|
Pa_HostApiTypeIdToHostApiIndex @9
|
||||||
|
Pa_HostApiDeviceIndexToDeviceIndex @10
|
||||||
|
Pa_GetLastHostErrorInfo @11
|
||||||
|
Pa_GetDeviceCount @12
|
||||||
|
Pa_GetDefaultInputDevice @13
|
||||||
|
Pa_GetDefaultOutputDevice @14
|
||||||
|
Pa_GetDeviceInfo @15
|
||||||
|
Pa_IsFormatSupported @16
|
||||||
|
Pa_OpenStream @17
|
||||||
|
Pa_OpenDefaultStream @18
|
||||||
|
Pa_CloseStream @19
|
||||||
|
Pa_SetStreamFinishedCallback @20
|
||||||
|
Pa_StartStream @21
|
||||||
|
Pa_StopStream @22
|
||||||
|
Pa_AbortStream @23
|
||||||
|
Pa_IsStreamStopped @24
|
||||||
|
Pa_IsStreamActive @25
|
||||||
|
Pa_GetStreamInfo @26
|
||||||
|
Pa_GetStreamTime @27
|
||||||
|
Pa_GetStreamCpuLoad @28
|
||||||
|
Pa_ReadStream @29
|
||||||
|
Pa_WriteStream @30
|
||||||
|
Pa_GetStreamReadAvailable @31
|
||||||
|
Pa_GetStreamWriteAvailable @32
|
||||||
|
Pa_GetSampleSize @33
|
||||||
|
Pa_Sleep @34
|
||||||
|
PaAsio_GetAvailableLatencyValues @50
|
||||||
|
PaAsio_ShowControlPanel @51
|
||||||
|
PaUtil_InitializeX86PlainConverters @52
|
||||||
|
PaAsio_GetInputChannelName @53
|
||||||
|
PaAsio_GetOutputChannelName @54
|
56
portaudio-v19/build/msvc/readme.txt
Normal file
56
portaudio-v19/build/msvc/readme.txt
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
Hello
|
||||||
|
|
||||||
|
This is a small list of steps in order to build portaudio
|
||||||
|
(Currently v19-devel) into a VC6 DLL and lib file.
|
||||||
|
This DLL contains all 3 current win32 PA APIS (MM/DS/ASIO)
|
||||||
|
|
||||||
|
1)Copy the source dirs that comes with the ASIO SDK inside pa_win\msvc
|
||||||
|
so you should now have:
|
||||||
|
|
||||||
|
pa_win\msvc\common
|
||||||
|
pa_win\msvc\host
|
||||||
|
pa_win\msvc\host\sample
|
||||||
|
pa_win\msvc\host\pc
|
||||||
|
pa_win\msvc\host\mac (not needed)
|
||||||
|
|
||||||
|
You dont need "driver"
|
||||||
|
|
||||||
|
|
||||||
|
2)execure "make.bat", this assumes VC6 is installed in
|
||||||
|
C:\Program Files\Microsoft Visual Studio\
|
||||||
|
|
||||||
|
if its not,
|
||||||
|
|
||||||
|
Open a command Prompt and execute "vcvars32.bat" which sets the environment
|
||||||
|
so that you can use Microsoft's "nmake"
|
||||||
|
EX: C:\Program Files\Microsoft Visual Studio\VC98\Bin\vcvars32.bat
|
||||||
|
or (C:\progra~1\micros~2\VC98\bin\vcvars32) dumb de dumb
|
||||||
|
|
||||||
|
You should now have seen a line that said:
|
||||||
|
"Setting environment for using Microsoft Visual C++ tools."
|
||||||
|
While in pa_win\msvc , type "nmake makefile.msvc"
|
||||||
|
this _should_ create portaudio.dll and portaudio.lib
|
||||||
|
|
||||||
|
3)Now in any VC6 project, in which you require portaudio,
|
||||||
|
you can just link with portaudio.lib, and of course include the
|
||||||
|
relevant headers
|
||||||
|
(portaudio.h, and/or pa_asio.h , pa_x86_plain_converters.h) See (*)
|
||||||
|
|
||||||
|
4) Your new exe should now use portaudio.dll.
|
||||||
|
|
||||||
|
|
||||||
|
Have fun!
|
||||||
|
|
||||||
|
(*): you may want to add/remove some DLL entry points.
|
||||||
|
Right now those 3 entries are _not_ from portaudio.h
|
||||||
|
|
||||||
|
(from portaudio.def)
|
||||||
|
(...)
|
||||||
|
PaAsio_GetAvailableLatencyValues @50
|
||||||
|
PaAsio_ShowControlPanel @51
|
||||||
|
PaUtil_InitializeX86PlainConverters @52
|
||||||
|
|
||||||
|
|
||||||
|
-----
|
||||||
|
last update April 16th 2003
|
||||||
|
David Viens, davidv@plogue.com
|
1
portaudio-v19/build/msvc/setenv.bat
Executable file
1
portaudio-v19/build/msvc/setenv.bat
Executable file
@ -0,0 +1 @@
|
|||||||
|
C:\progra~1\micros~2\VC98\bin\vcvars32
|
28
portaudio-v19/build/scons/SConscript_common
Normal file
28
portaudio-v19/build/scons/SConscript_common
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
import os.path, sys
|
||||||
|
|
||||||
|
class ConfigurationError(Exception):
|
||||||
|
def __init__(self, reason):
|
||||||
|
Exception.__init__(self, "Configuration failed: %s" % reason)
|
||||||
|
|
||||||
|
env = Environment()
|
||||||
|
|
||||||
|
# sunos, aix, hpux, irix, sunos appear to be platforms known by SCons, assuming they're POSIX compliant
|
||||||
|
Posix = ("linux", "darwin", "sunos", "aix", "hpux", "irix", "sunos")
|
||||||
|
Windows = ("win32", "cygwin")
|
||||||
|
|
||||||
|
if env["PLATFORM"] == "posix":
|
||||||
|
if sys.platform[:5] == "linux":
|
||||||
|
Platform = "linux"
|
||||||
|
else:
|
||||||
|
raise ConfigurationError("Unknown platform %s" % sys.platform)
|
||||||
|
else:
|
||||||
|
if not env["PLATFORM"] in ("win32", "cygwin") + Posix:
|
||||||
|
raise ConfigurationError("Unknown platform %s" % env["PLATFORM"])
|
||||||
|
Platform = env["PLATFORM"]
|
||||||
|
|
||||||
|
# Inspired by the versioning scheme followed by Qt, it seems sensible enough. There are three components: major, minor
|
||||||
|
# and micro. Major changes with each subtraction from the API (backward-incompatible, i.e. V19 vs. V18), minor changes
|
||||||
|
# with each addition to the API (backward-compatible), micro changes with each revision of the source code.
|
||||||
|
ApiVer = "2.0.0"
|
||||||
|
|
||||||
|
Export("Platform", "Posix", "ConfigurationError", "ApiVer")
|
92
portaudio-v19/build/scons/SConscript_opts
Normal file
92
portaudio-v19/build/scons/SConscript_opts
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
import os.path, sys
|
||||||
|
|
||||||
|
def _PackageOption(pkgName, default=1):
|
||||||
|
""" Allow user to choose whether a package should be used if available. This results in a commandline option use<Pkgname>,
|
||||||
|
where Pkgname is the name of the package with a capitalized first letter.
|
||||||
|
@param pkgName: Name of package.
|
||||||
|
@param default: The default value for this option ("yes"/"no").
|
||||||
|
"""
|
||||||
|
return BoolOption("use%s" % pkgName[0].upper() + pkgName[1:], "use %s if available" % (pkgName), default)
|
||||||
|
|
||||||
|
def _BoolOption(opt, explanation, default=1):
|
||||||
|
""" Allow user to enable/disable a certain option. This results in a commandline option enable<Option>, where Option
|
||||||
|
is the name of the option with a capitalized first letter.
|
||||||
|
@param opt: Name of option.
|
||||||
|
@param explanation: Explanation of option.
|
||||||
|
@param default: The default value for this option (1/0).
|
||||||
|
"""
|
||||||
|
return BoolOption("enable%s" % opt[0].upper() + opt[1:], explanation, default)
|
||||||
|
|
||||||
|
def _EnumOption(opt, explanation, allowedValues, default):
|
||||||
|
""" Allow the user to choose among a set of values for an option. This results in a commandline option with<Option>,
|
||||||
|
where Option is the name of the option with a capitalized first letter.
|
||||||
|
@param opt: The name of the option.
|
||||||
|
@param explanation: Explanation of option.
|
||||||
|
@param allowedValues: The set of values to choose from.
|
||||||
|
@param default: The default value.
|
||||||
|
"""
|
||||||
|
assert default in allowedValues
|
||||||
|
return EnumOption("with%s" % opt[0].upper() + opt[1:], explanation, default, allowed_values=allowedValues)
|
||||||
|
|
||||||
|
def _DirectoryOption(opt, explanation, default):
|
||||||
|
""" Allow the user to configure the location for a certain directory, for instance the prefix. This results in a
|
||||||
|
commandline option which is simply the name of this option.
|
||||||
|
@param opt: The configurable directory, for instance "prefix".
|
||||||
|
@param explanation: Explanation of option.
|
||||||
|
@param default: The default value for this option.
|
||||||
|
"""
|
||||||
|
return PathOption(opt, explanation, default)
|
||||||
|
# Incompatible with the latest stable SCons
|
||||||
|
# return PathOption(path, help, default, PathOption.PathIsDir)
|
||||||
|
|
||||||
|
import SCons.Errors
|
||||||
|
try:
|
||||||
|
Import("Platform", "Posix")
|
||||||
|
except SCons.Errors.UserError:
|
||||||
|
# The common objects must be exported first
|
||||||
|
SConscript("SConscript_common")
|
||||||
|
Import("Platform", "Posix")
|
||||||
|
|
||||||
|
# Expose the options as a dictionary of sets of options
|
||||||
|
opts = {}
|
||||||
|
|
||||||
|
if Platform in Posix:
|
||||||
|
opts["Installation Dirs"] = [_DirectoryOption("prefix", "installation prefix", "/usr/local")]
|
||||||
|
elif Platform in Windows:
|
||||||
|
if Platform == "cygwin":
|
||||||
|
opts["Installation Dirs"] = [_DirectoryOption("prefix", "installation prefix", "/usr/local")]
|
||||||
|
|
||||||
|
opts["Build Targets"] = [_BoolOption("shared", "create shared library"), _BoolOption("static", "create static library"),
|
||||||
|
_BoolOption("tests", "build test programs")]
|
||||||
|
|
||||||
|
apis = []
|
||||||
|
if Platform in Posix:
|
||||||
|
apis.append(_PackageOption("OSS"))
|
||||||
|
apis.append(_PackageOption("JACK"))
|
||||||
|
if Platform == "linux":
|
||||||
|
apis.append(_PackageOption("ALSA"))
|
||||||
|
apis.append(_PackageOption("ASIHPI"))
|
||||||
|
elif Platform in Windows:
|
||||||
|
if Platform == "cygwin":
|
||||||
|
apis.append(_EnumOption("winAPI", "Windows API to use", ("wmme", "directx", "asio"), "wmme"))
|
||||||
|
elif Platform == "darwin":
|
||||||
|
apis.append(_EnumOption("macAPI", "Mac API to use", ("asio", "core", "sm"), "core"))
|
||||||
|
opts["Host APIs"] = apis
|
||||||
|
|
||||||
|
opts["Build Parameters"] = [\
|
||||||
|
_BoolOption("debug", "compile with debug symbols"),
|
||||||
|
_BoolOption("optimize", "compile with optimization", default=0),
|
||||||
|
_BoolOption("asserts", "runtime assertions are helpful for debugging, but can be detrimental to performance",
|
||||||
|
default=1),
|
||||||
|
_BoolOption("debugOutput", "enable debug output", default=0),
|
||||||
|
# _BoolOption("python", "create Python binding"),
|
||||||
|
("customCFlags", "customize compilation of C code", ""),
|
||||||
|
("customCxxFlags", "customize compilation of C++ code", ""),
|
||||||
|
("customLinkFlags", "customize linking", ""),
|
||||||
|
]
|
||||||
|
|
||||||
|
opts["Bindings"] = [\
|
||||||
|
_BoolOption("cxx", "build Merlijn Blaauw's PA C++ wrapper", default=0)
|
||||||
|
]
|
||||||
|
|
||||||
|
Return("opts")
|
Loading…
Reference in New Issue
Block a user