mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-11 17:13:37 +02:00
Actually include the 2.1.0 sbsms library
This commit is contained in:
97
lib-src/libsbsms/win/config.h
Normal file
97
lib-src/libsbsms/win/config.h
Normal file
@@ -0,0 +1,97 @@
|
||||
/* Windows specific config.h */
|
||||
|
||||
/* Define to 1 if you have the `calloc' function. */
|
||||
#define HAVE_CALLOC 1
|
||||
|
||||
/* Define to 1 if you have the `ceil' function. */
|
||||
#define HAVE_CEIL 1
|
||||
|
||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||
// #define HAVE_DLFCN_H 1
|
||||
|
||||
/* Define to 1 if you have the `floor' function. */
|
||||
#define HAVE_FLOOR 1
|
||||
|
||||
/* Define to 1 if you have the `free' function. */
|
||||
#define HAVE_FREE 1
|
||||
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
// #define HAVE_INTTYPES_H 1
|
||||
|
||||
/* Define to 1 if you have the `m' library (-lm). */
|
||||
// #define HAVE_LIBM 1
|
||||
|
||||
/* Define to 1 if you have the `lrint' function. */
|
||||
// #define HAVE_LRINT 1
|
||||
|
||||
/* Define to 1 if you have the `lrintf' function. */
|
||||
// #define HAVE_LRINTF 1
|
||||
|
||||
/* Define to 1 if you have the `malloc' function. */
|
||||
#define HAVE_MALLOC 1
|
||||
|
||||
/* Define to 1 if you have the `memcpy' function. */
|
||||
#define HAVE_MEMCPY 1
|
||||
|
||||
/* Define to 1 if you have the <memory.h> header file. */
|
||||
#define HAVE_MEMORY_H 1
|
||||
|
||||
/* Define to 1 if you have the `sqrt' function. */
|
||||
#define HAVE_SQRT 1
|
||||
|
||||
/* Define to 1 if you have the <stdint.h> header file. */
|
||||
// #define HAVE_STDINT_H 1
|
||||
|
||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||
#define HAVE_STDLIB_H 1
|
||||
|
||||
/* Define to 1 if you have the <strings.h> header file. */
|
||||
#define HAVE_STRINGS_H 1
|
||||
|
||||
/* Define to 1 if you have the <string.h> header file. */
|
||||
#define HAVE_STRING_H 1
|
||||
|
||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||
#define HAVE_SYS_STAT_H 1
|
||||
|
||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||
#define HAVE_SYS_TYPES_H 1
|
||||
|
||||
/* Define to 1 if you have the <unistd.h> header file. */
|
||||
#define HAVE_UNISTD_H 1
|
||||
|
||||
/* Name of package */
|
||||
#define PACKAGE "libsbsms"
|
||||
|
||||
/* Define to the address where bug reports for this package should be sent. */
|
||||
#define PACKAGE_BUGREPORT ""
|
||||
|
||||
/* Define to the full name of this package. */
|
||||
#define PACKAGE_NAME "sbsms"
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#define PACKAGE_STRING "sbsms 1.5.0"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#define PACKAGE_TARNAME "sbsms"
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#define PACKAGE_VERSION "1.5.0"
|
||||
|
||||
/* Define to 1 if you have the ANSI C header files. */
|
||||
#define STDC_HEADERS 1
|
||||
|
||||
/* Version number of package */
|
||||
#define VERSION "1.5.0"
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
# if defined __BIG_ENDIAN__
|
||||
# define WORDS_BIGENDIAN 1
|
||||
# endif
|
||||
#else
|
||||
# ifndef WORDS_BIGENDIAN
|
||||
# define WORDS_BIGENDIAN 1
|
||||
# endif
|
||||
#endif
|
37
lib-src/libsbsms/win/sbsms/sbsms.rc
Executable file
37
lib-src/libsbsms/win/sbsms/sbsms.rc
Executable file
@@ -0,0 +1,37 @@
|
||||
SBSMSLogo ICON "sbsms.ico"
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Version
|
||||
//
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,7,0,0
|
||||
PRODUCTVERSION 1,7,0,0
|
||||
FILEFLAGSMASK 0x17L
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
#else
|
||||
FILEFLAGS 0x0L
|
||||
#endif
|
||||
FILEOS 0x4L
|
||||
FILETYPE 0x1L
|
||||
FILESUBTYPE 0x0L
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904b0"
|
||||
BEGIN
|
||||
VALUE "CompanyName", "Mune"
|
||||
VALUE "FileDescription", "SBSMS wxPlayer"
|
||||
VALUE "FileVersion", "1.7.0"
|
||||
VALUE "InternalName", "SBSMS"
|
||||
VALUE "LegalCopyright", "Copyright <20> 2008. All rights reserved."
|
||||
VALUE "OriginalFilename", "sbsms.exe"
|
||||
VALUE "ProductName", "SBSMS wxPlayer"
|
||||
VALUE "ProductVersion", "1.7.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
BEGIN
|
||||
VALUE "Translation", 0x409, 1200
|
||||
END
|
||||
END
|
127
lib-src/libsbsms/win/sbsms/sbsms.sln
Normal file
127
lib-src/libsbsms/win/sbsms/sbsms.sln
Normal file
@@ -0,0 +1,127 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 10.00
|
||||
# Visual C++ Express 2008
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sbsms", "sbsms.vcproj", "{772B2532-A638-4E55-83D4-A2F6DCEEBAA5}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{7ABA0F80-94AE-4E82-AB89-2E1258212D59} = {7ABA0F80-94AE-4E82-AB89-2E1258212D59}
|
||||
{2D6A5EE8-179C-43AB-B92F-00057911E102} = {2D6A5EE8-179C-43AB-B92F-00057911E102}
|
||||
{F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952} = {F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952}
|
||||
{74635DE6-DD14-4BAD-B820-A7531766D78E} = {74635DE6-DD14-4BAD-B820-A7531766D78E}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libmad", "..\libmad\libmad.vcproj", "{74635DE6-DD14-4BAD-B820-A7531766D78E}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libsndfile", "..\libsndfile\libsndfile.vcproj", "{F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "portaudio-v19", "..\portaudio-v19\portaudio-v19.vcproj", "{7ABA0F80-94AE-4E82-AB89-2E1258212D59}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pthread", "..\pthread\pthread.vcproj", "{2D6A5EE8-179C-43AB-B92F-00057911E102}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug DLL|Win32 = Debug DLL|Win32
|
||||
Debug wx284|Win32 = Debug wx284|Win32
|
||||
Debug|Win32 = Debug|Win32
|
||||
Modular_Release|Win32 = Modular_Release|Win32
|
||||
Release|Win32 = Release|Win32
|
||||
Unicode Debug|Win32 = Unicode Debug|Win32
|
||||
Unicode Release|Win32 = Unicode Release|Win32
|
||||
Unicode_Debug|Win32 = Unicode_Debug|Win32
|
||||
Unicode_Release|Win32 = Unicode_Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{772B2532-A638-4E55-83D4-A2F6DCEEBAA5}.Debug DLL|Win32.ActiveCfg = Debug|Win32
|
||||
{772B2532-A638-4E55-83D4-A2F6DCEEBAA5}.Debug DLL|Win32.Build.0 = Debug|Win32
|
||||
{772B2532-A638-4E55-83D4-A2F6DCEEBAA5}.Debug wx284|Win32.ActiveCfg = Debug|Win32
|
||||
{772B2532-A638-4E55-83D4-A2F6DCEEBAA5}.Debug wx284|Win32.Build.0 = Debug|Win32
|
||||
{772B2532-A638-4E55-83D4-A2F6DCEEBAA5}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{772B2532-A638-4E55-83D4-A2F6DCEEBAA5}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{772B2532-A638-4E55-83D4-A2F6DCEEBAA5}.Modular_Release|Win32.ActiveCfg = Release|Win32
|
||||
{772B2532-A638-4E55-83D4-A2F6DCEEBAA5}.Modular_Release|Win32.Build.0 = Release|Win32
|
||||
{772B2532-A638-4E55-83D4-A2F6DCEEBAA5}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{772B2532-A638-4E55-83D4-A2F6DCEEBAA5}.Release|Win32.Build.0 = Release|Win32
|
||||
{772B2532-A638-4E55-83D4-A2F6DCEEBAA5}.Unicode Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{772B2532-A638-4E55-83D4-A2F6DCEEBAA5}.Unicode Debug|Win32.Build.0 = Debug|Win32
|
||||
{772B2532-A638-4E55-83D4-A2F6DCEEBAA5}.Unicode Release|Win32.ActiveCfg = Release|Win32
|
||||
{772B2532-A638-4E55-83D4-A2F6DCEEBAA5}.Unicode Release|Win32.Build.0 = Release|Win32
|
||||
{772B2532-A638-4E55-83D4-A2F6DCEEBAA5}.Unicode_Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{772B2532-A638-4E55-83D4-A2F6DCEEBAA5}.Unicode_Debug|Win32.Build.0 = Debug|Win32
|
||||
{772B2532-A638-4E55-83D4-A2F6DCEEBAA5}.Unicode_Release|Win32.ActiveCfg = Release|Win32
|
||||
{772B2532-A638-4E55-83D4-A2F6DCEEBAA5}.Unicode_Release|Win32.Build.0 = Release|Win32
|
||||
{74635DE6-DD14-4BAD-B820-A7531766D78E}.Debug DLL|Win32.ActiveCfg = Debug|Win32
|
||||
{74635DE6-DD14-4BAD-B820-A7531766D78E}.Debug DLL|Win32.Build.0 = Debug|Win32
|
||||
{74635DE6-DD14-4BAD-B820-A7531766D78E}.Debug wx284|Win32.ActiveCfg = Debug|Win32
|
||||
{74635DE6-DD14-4BAD-B820-A7531766D78E}.Debug wx284|Win32.Build.0 = Debug|Win32
|
||||
{74635DE6-DD14-4BAD-B820-A7531766D78E}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{74635DE6-DD14-4BAD-B820-A7531766D78E}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{74635DE6-DD14-4BAD-B820-A7531766D78E}.Modular_Release|Win32.ActiveCfg = Release|Win32
|
||||
{74635DE6-DD14-4BAD-B820-A7531766D78E}.Modular_Release|Win32.Build.0 = Release|Win32
|
||||
{74635DE6-DD14-4BAD-B820-A7531766D78E}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{74635DE6-DD14-4BAD-B820-A7531766D78E}.Release|Win32.Build.0 = Release|Win32
|
||||
{74635DE6-DD14-4BAD-B820-A7531766D78E}.Unicode Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{74635DE6-DD14-4BAD-B820-A7531766D78E}.Unicode Debug|Win32.Build.0 = Debug|Win32
|
||||
{74635DE6-DD14-4BAD-B820-A7531766D78E}.Unicode Release|Win32.ActiveCfg = Release|Win32
|
||||
{74635DE6-DD14-4BAD-B820-A7531766D78E}.Unicode Release|Win32.Build.0 = Release|Win32
|
||||
{74635DE6-DD14-4BAD-B820-A7531766D78E}.Unicode_Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{74635DE6-DD14-4BAD-B820-A7531766D78E}.Unicode_Debug|Win32.Build.0 = Debug|Win32
|
||||
{74635DE6-DD14-4BAD-B820-A7531766D78E}.Unicode_Release|Win32.ActiveCfg = Release|Win32
|
||||
{74635DE6-DD14-4BAD-B820-A7531766D78E}.Unicode_Release|Win32.Build.0 = Release|Win32
|
||||
{F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952}.Debug DLL|Win32.ActiveCfg = Debug DLL|Win32
|
||||
{F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952}.Debug DLL|Win32.Build.0 = Debug DLL|Win32
|
||||
{F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952}.Debug wx284|Win32.ActiveCfg = Debug wx284|Win32
|
||||
{F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952}.Debug wx284|Win32.Build.0 = Debug wx284|Win32
|
||||
{F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952}.Modular_Release|Win32.ActiveCfg = Modular_Release|Win32
|
||||
{F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952}.Modular_Release|Win32.Build.0 = Modular_Release|Win32
|
||||
{F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952}.Release|Win32.Build.0 = Release|Win32
|
||||
{F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952}.Unicode Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952}.Unicode Debug|Win32.Build.0 = Debug|Win32
|
||||
{F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952}.Unicode Release|Win32.ActiveCfg = Release|Win32
|
||||
{F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952}.Unicode Release|Win32.Build.0 = Release|Win32
|
||||
{F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952}.Unicode_Debug|Win32.ActiveCfg = Unicode_Debug|Win32
|
||||
{F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952}.Unicode_Debug|Win32.Build.0 = Unicode_Debug|Win32
|
||||
{F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952}.Unicode_Release|Win32.ActiveCfg = Unicode_Release|Win32
|
||||
{F4B4A272-4ED3-4951-A6EE-B7BAAC1C4952}.Unicode_Release|Win32.Build.0 = Unicode_Release|Win32
|
||||
{7ABA0F80-94AE-4E82-AB89-2E1258212D59}.Debug DLL|Win32.ActiveCfg = Debug|Win32
|
||||
{7ABA0F80-94AE-4E82-AB89-2E1258212D59}.Debug DLL|Win32.Build.0 = Debug|Win32
|
||||
{7ABA0F80-94AE-4E82-AB89-2E1258212D59}.Debug wx284|Win32.ActiveCfg = Debug|Win32
|
||||
{7ABA0F80-94AE-4E82-AB89-2E1258212D59}.Debug wx284|Win32.Build.0 = Debug|Win32
|
||||
{7ABA0F80-94AE-4E82-AB89-2E1258212D59}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{7ABA0F80-94AE-4E82-AB89-2E1258212D59}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{7ABA0F80-94AE-4E82-AB89-2E1258212D59}.Modular_Release|Win32.ActiveCfg = Release|Win32
|
||||
{7ABA0F80-94AE-4E82-AB89-2E1258212D59}.Modular_Release|Win32.Build.0 = Release|Win32
|
||||
{7ABA0F80-94AE-4E82-AB89-2E1258212D59}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{7ABA0F80-94AE-4E82-AB89-2E1258212D59}.Release|Win32.Build.0 = Release|Win32
|
||||
{7ABA0F80-94AE-4E82-AB89-2E1258212D59}.Unicode Debug|Win32.ActiveCfg = Unicode Debug|Win32
|
||||
{7ABA0F80-94AE-4E82-AB89-2E1258212D59}.Unicode Debug|Win32.Build.0 = Unicode Debug|Win32
|
||||
{7ABA0F80-94AE-4E82-AB89-2E1258212D59}.Unicode Release|Win32.ActiveCfg = Unicode Release|Win32
|
||||
{7ABA0F80-94AE-4E82-AB89-2E1258212D59}.Unicode Release|Win32.Build.0 = Unicode Release|Win32
|
||||
{7ABA0F80-94AE-4E82-AB89-2E1258212D59}.Unicode_Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{7ABA0F80-94AE-4E82-AB89-2E1258212D59}.Unicode_Debug|Win32.Build.0 = Debug|Win32
|
||||
{7ABA0F80-94AE-4E82-AB89-2E1258212D59}.Unicode_Release|Win32.ActiveCfg = Release|Win32
|
||||
{7ABA0F80-94AE-4E82-AB89-2E1258212D59}.Unicode_Release|Win32.Build.0 = Release|Win32
|
||||
{2D6A5EE8-179C-43AB-B92F-00057911E102}.Debug DLL|Win32.ActiveCfg = Debug|Win32
|
||||
{2D6A5EE8-179C-43AB-B92F-00057911E102}.Debug DLL|Win32.Build.0 = Debug|Win32
|
||||
{2D6A5EE8-179C-43AB-B92F-00057911E102}.Debug wx284|Win32.ActiveCfg = Debug|Win32
|
||||
{2D6A5EE8-179C-43AB-B92F-00057911E102}.Debug wx284|Win32.Build.0 = Debug|Win32
|
||||
{2D6A5EE8-179C-43AB-B92F-00057911E102}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{2D6A5EE8-179C-43AB-B92F-00057911E102}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{2D6A5EE8-179C-43AB-B92F-00057911E102}.Modular_Release|Win32.ActiveCfg = Release|Win32
|
||||
{2D6A5EE8-179C-43AB-B92F-00057911E102}.Modular_Release|Win32.Build.0 = Release|Win32
|
||||
{2D6A5EE8-179C-43AB-B92F-00057911E102}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{2D6A5EE8-179C-43AB-B92F-00057911E102}.Release|Win32.Build.0 = Release|Win32
|
||||
{2D6A5EE8-179C-43AB-B92F-00057911E102}.Unicode Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{2D6A5EE8-179C-43AB-B92F-00057911E102}.Unicode Debug|Win32.Build.0 = Debug|Win32
|
||||
{2D6A5EE8-179C-43AB-B92F-00057911E102}.Unicode Release|Win32.ActiveCfg = Release|Win32
|
||||
{2D6A5EE8-179C-43AB-B92F-00057911E102}.Unicode Release|Win32.Build.0 = Release|Win32
|
||||
{2D6A5EE8-179C-43AB-B92F-00057911E102}.Unicode_Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{2D6A5EE8-179C-43AB-B92F-00057911E102}.Unicode_Debug|Win32.Build.0 = Debug|Win32
|
||||
{2D6A5EE8-179C-43AB-B92F-00057911E102}.Unicode_Release|Win32.ActiveCfg = Release|Win32
|
||||
{2D6A5EE8-179C-43AB-B92F-00057911E102}.Unicode_Release|Win32.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
423
lib-src/libsbsms/win/sbsms/sbsms.vcproj
Normal file
423
lib-src/libsbsms/win/sbsms/sbsms.vcproj
Normal file
@@ -0,0 +1,423 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="sbsms"
|
||||
ProjectGUID="{772B2532-A638-4E55-83D4-A2F6DCEEBAA5}"
|
||||
RootNamespace="sbsms"
|
||||
TargetFrameworkVersion="131072"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||
IntermediateDirectory="$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories=""$(WXWIN)\lib\vc_lib\msw";"$(WXWIN)\include";..\..\win;..\..\include;..\..\..\pthread\pthreads.2;..\..\..\libmad;..\..\..\libsndfile\Win32;"..\..\..\portaudio-v19\include""
|
||||
PreprocessorDefinitions="MULTITHREADED;HAVE_MAD;HAVE_PORTAUDIO;HAVE_SNDFILE;HAVE_WX;PTW32_STATIC_LIB;_WIN32;__WXDEBUG__"
|
||||
MinimalRebuild="true"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
DebugInformationFormat="4"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="true"
|
||||
AdditionalDependencies="User32.lib uuid.lib rpcrt4.lib winmm.lib ws2_32.lib wxbase28d.lib wxbase28d_net.lib wxmsw28d_adv.lib wxmsw28d_core.lib wxmsw28d_html.lib wxexpatd.lib wxpngd.lib wxzlibd.lib wxjpegd.lib wxtiffd.lib comctl32.lib"
|
||||
AdditionalLibraryDirectories=""$(WXWIN)\lib\vc_lib""
|
||||
GenerateDebugInformation="true"
|
||||
SubSystem="2"
|
||||
RandomizedBaseAddress="1"
|
||||
DataExecutionPrevention="0"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||
IntermediateDirectory="$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2"
|
||||
WholeProgramOptimization="1"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
CommandLine="C:\wix\candle.exe sbsms.wxs -out sbsms.wixobj
C:\wix\light.exe sbsms.wixobj -out sbsms.msi
"
|
||||
AdditionalDependencies="sbsms.wxs;sbsms.wxi"
|
||||
Outputs="sbsms.msi"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""$(WXWIN)\lib\vc_lib\msw";"$(WXWIN)\include";..\..\win;..\..\include;..\..\..\pthread\pthreads.2;..\..\..\libmad;..\..\..\libsndfile\Win32;"..\..\..\portaudio-v19\include""
|
||||
PreprocessorDefinitions="MULTITHREADED;HAVE_MAD;HAVE_PORTAUDIO;HAVE_SNDFILE;HAVE_WX;PTW32_STATIC_LIB;_WIN32;__WXMSW__"
|
||||
RuntimeLibrary="2"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
DebugInformationFormat="0"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="winmm.lib ws2_32.lib wxbase28.lib wxbase28_net.lib wxmsw28_adv.lib wxmsw28_core.lib wxmsw28_html.lib wxexpat.lib wxpng.lib wxzlib.lib wxjpeg.lib wxtiff.lib comctl32.lib"
|
||||
AdditionalLibraryDirectories=""$(WXWIN)\lib\vc_lib""
|
||||
IgnoreAllDefaultLibraries="false"
|
||||
GenerateDebugInformation="false"
|
||||
SubSystem="2"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
RandomizedBaseAddress="1"
|
||||
DataExecutionPrevention="0"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
CommandLine=""
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\src\audio.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\audiobuffer.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\btndown.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\buffer.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\convert.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\fft.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\grain.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\import.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\mp3.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\mp3tech.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\pcm.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\peak.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\pitch.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\play.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
PreprocessorDefinitions="HAVE_SNDFILE HAVE_MAD HAVE_PORTAUDIO HAVE_WX"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\resample.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\sbsms.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\sms.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\subband.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\track.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\trackpoint.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\utils.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\wxconvertdlg.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\wxplayctrl.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\wxplayer.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\wxplayerframe.cpp"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\src\audio.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\audiobuffer.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\btndown.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\buffer.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\config.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\convert.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\defs.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\fft.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\grain.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\import.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\mp3.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\mp3tech.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\pcm.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\peak.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\play.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\real.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\include\sbsms.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\sincCoeffs.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\sms.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\subband.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\track.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\trackpoint.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\utils.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\wxconvertdlg.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\wxplayctrl.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\wxplayer.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||
>
|
||||
<File
|
||||
RelativePath=".\sbsms.ICO"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\sbsms.rc"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath=".\sbsms.wxs"
|
||||
>
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
Reference in New Issue
Block a user