From 3981b0d9d886cd60eb239cc892460df21cbd970b Mon Sep 17 00:00:00 2001 From: Pete Batard Date: Wed, 27 Oct 2010 13:26:13 +0100 Subject: [INTERNAL - NOT FOR RELEASE] prefixed internal files with _ --- _bd.cmd | 72 +++++++++ _bm.sh | 47 ++++++ _libusb_2008.sln | 57 +++++++ _libusb_dll_2008.vcproj | 378 ++++++++++++++++++++++++++++++++++++++++++++ _libusb_static_2008.vcproj | 332 ++++++++++++++++++++++++++++++++++++++ bd.cmd | 72 --------- bm.sh | 47 ------ examples/_lsusb_2008.vcproj | 321 +++++++++++++++++++++++++++++++++++++ examples/_xusb_2008.vcproj | 319 +++++++++++++++++++++++++++++++++++++ examples/lsusb_2008.vcproj | 321 ------------------------------------- examples/xusb_2008.vcproj | 319 ------------------------------------- libusb_2008.sln | 57 ------- libusb_dll_2008.vcproj | 378 -------------------------------------------- libusb_static_2008.vcproj | 332 -------------------------------------- 14 files changed, 1526 insertions(+), 1526 deletions(-) create mode 100644 _bd.cmd create mode 100644 _bm.sh create mode 100644 _libusb_2008.sln create mode 100644 _libusb_dll_2008.vcproj create mode 100644 _libusb_static_2008.vcproj delete mode 100644 bd.cmd delete mode 100644 bm.sh create mode 100644 examples/_lsusb_2008.vcproj create mode 100644 examples/_xusb_2008.vcproj delete mode 100644 examples/lsusb_2008.vcproj delete mode 100644 examples/xusb_2008.vcproj delete mode 100644 libusb_2008.sln delete mode 100644 libusb_dll_2008.vcproj delete mode 100644 libusb_static_2008.vcproj diff --git a/_bd.cmd b/_bd.cmd new file mode 100644 index 0000000..4fe42bb --- /dev/null +++ b/_bd.cmd @@ -0,0 +1,72 @@ +@echo off +rem produce the DDK binary files for snapshots +rem !!!THIS SCRIPT IS FOR INTERNAL DEVELOPER USE ONLY!!! + +if NOT x%DDK_TARGET_OS%==xWinXP goto usage + +mkdir E:\dailies\%DATE% +for %%A in (MS32 MS64) do mkdir E:\dailies\%DATE%\%%A +for %%A in (MS32 MS64) do mkdir E:\dailies\%DATE%\%%A\static +for %%A in (MS32 MS64) do mkdir E:\dailies\%DATE%\%%A\dll +for %%A in (source bin32 bin64) do mkdir E:\dailies\%DATE%\examples\%%A +copy libusb\libusb.h E:\dailies\%DATE%\ +copy libusb\msvc\stdint.h E:\dailies\%DATE%\ +copy libusb\libusb-1.0.def E:\dailies\%DATE%\ +copy examples\*.c E:\dailies\%DATE%\examples\source + +set ORG_BUILD_ALT_DIR=%BUILD_ALT_DIR% +set ORG_BUILDARCH=%_BUILDARCH% +set ORG_PATH=%PATH% +set ORG_BUILD_DEFAULT_TARGETS=%BUILD_DEFAULT_TARGETS% + +set 386=1 +set AMD64= +set BUILD_DEFAULT_TARGETS=-386 +set _AMD64bit= +set _BUILDARCH=x86 +set PATH=%BASEDIR%\bin\x86;%BASEDIR%\bin\x86\x86 + +call ddk_build + +@echo off +copy Win32\Release\lib\libusb-1.0.lib E:\dailies\%DATE%\MS32\static +copy Win32\Release\examples\lsusb.exe E:\dailies\%DATE%\examples\bin32 +copy Win32\Release\examples\xusb.exe E:\dailies\%DATE%\examples\bin32 + +call ddk_build DLL + +@echo off +copy Win32\Release\lib\libusb-1.0.lib E:\dailies\%DATE%\MS32\dll +copy Win32\Release\dll\libusb-1.0.dll E:\dailies\%DATE%\MS32\dll + +set 386= +set AMD64=1 +set BUILD_DEFAULT_TARGETS=-amd64 +set _AMD64bit=true +set _BUILDARCH=AMD64 +set PATH=%BASEDIR%\bin\x86\amd64;%BASEDIR%\bin\x86 + +call ddk_build + +@echo off +copy x64\Release\lib\libusb-1.0.lib E:\dailies\%DATE%\MS64\static +copy x64\Release\examples\lsusb.exe E:\dailies\%DATE%\examples\bin64 +copy x64\Release\examples\xusb.exe E:\dailies\%DATE%\examples\bin64 + +call ddk_build DLL + +@echo off +copy x64\Release\lib\libusb-1.0.lib E:\dailies\%DATE%\MS64\dll +copy x64\Release\dll\libusb-1.0.dll E:\dailies\%DATE%\MS64\dll + +set BUILD_ALT_DIR=%ORG_BUILD_ALT_DIR% +set _BUILDARCH=%ORG_BUILDARCH% +set PATH=%ORG_PATH% +set BUILD_DEFAULT_TARGETS=%ORG_BUILD_DEFAULT_TARGETS% + +goto done + +:usage +echo must be run in a WXP build environment! + +:done \ No newline at end of file diff --git a/_bm.sh b/_bm.sh new file mode 100644 index 0000000..346d58e --- /dev/null +++ b/_bm.sh @@ -0,0 +1,47 @@ +#!/bin/sh +# produce the MinGW binary files for snapshots +# !!!THIS SCRIPT IS FOR INTERNAL DEVELOPER USE ONLY!!! + +date=`date +%Y.%m.%d` + +# +# 32 bit binaries +# +target=e:/dailies/$date/MinGW32 +git clean -f -d -x +# Not using debug (-g) in CFLAGS DRAMATICALLY reduces the size of the binaries +export CFLAGS="-O2 -m32" +export LDFLAGS="-m32" +export RCFLAGS="--target=pe-i386" +export DLLTOOLFLAGS="-m i386 -f --32" +echo `pwd` +(glibtoolize --version) < /dev/null > /dev/null 2>&1 && LIBTOOLIZE=glibtoolize || LIBTOOLIZE=libtoolize +$LIBTOOLIZE --copy --force || exit 1 +aclocal || exit 1 +autoheader || exit 1 +autoconf || exit 1 +automake -a -c || exit 1 +./configure --enable-toggable-debug +make +mkdir -p $target/static +mkdir -p $target/dll +cp -v libusb/.libs/libusb-1.0.a $target/static +cp -v libusb/.libs/libusb-1.0.dll $target/dll +cp -v libusb/.libs/libusb-1.0.dll.a $target/dll +make clean + +# +# 64 bit binaries +# +target=e:/dailies/$date/MinGW64 +export CFLAGS="-O2" +export LDFLAGS="" +export RCFLAGS="" +export DLLTOOLFLAGS="" +./configure --enable-toggable-debug +make +mkdir -p $target/static +mkdir -p $target/dll +cp -v libusb/.libs/libusb-1.0.a $target/static +cp -v libusb/.libs/libusb-1.0.dll $target/dll +cp -v libusb/.libs/libusb-1.0.dll.a $target/dll \ No newline at end of file diff --git a/_libusb_2008.sln b/_libusb_2008.sln new file mode 100644 index 0000000..c1b44c7 --- /dev/null +++ b/_libusb_2008.sln @@ -0,0 +1,57 @@ +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libusb-1.0 (static)", "_libusb_static_2008.vcproj", "{349EE8F9-7D25-4909-AAF5-FF3FADE72187}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libusb-1.0 (dll)", "_libusb_dll_2008.vcproj", "{349EE8FA-7D25-4909-AAF5-FF3FADE72187}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lsusb", "examples\_lsusb_2008.vcproj", "{F4938DB0-3DE7-4737-9C5A-EAD1BE819F87}" + ProjectSection(ProjectDependencies) = postProject + {349EE8F9-7D25-4909-AAF5-FF3FADE72187} = {349EE8F9-7D25-4909-AAF5-FF3FADE72187} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xusb", "examples\_xusb_2008.vcproj", "{3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}" + ProjectSection(ProjectDependencies) = postProject + {349EE8F9-7D25-4909-AAF5-FF3FADE72187} = {349EE8F9-7D25-4909-AAF5-FF3FADE72187} + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {349EE8F9-7D25-4909-AAF5-FF3FADE72187}.Debug|Win32.ActiveCfg = Debug|Win32 + {349EE8F9-7D25-4909-AAF5-FF3FADE72187}.Debug|Win32.Build.0 = Debug|Win32 + {349EE8F9-7D25-4909-AAF5-FF3FADE72187}.Debug|x64.ActiveCfg = Debug|x64 + {349EE8F9-7D25-4909-AAF5-FF3FADE72187}.Debug|x64.Build.0 = Debug|x64 + {349EE8F9-7D25-4909-AAF5-FF3FADE72187}.Release|Win32.ActiveCfg = Release|Win32 + {349EE8F9-7D25-4909-AAF5-FF3FADE72187}.Release|Win32.Build.0 = Release|Win32 + {349EE8F9-7D25-4909-AAF5-FF3FADE72187}.Release|x64.ActiveCfg = Release|x64 + {349EE8F9-7D25-4909-AAF5-FF3FADE72187}.Release|x64.Build.0 = Release|x64 + {349EE8FA-7D25-4909-AAF5-FF3FADE72187}.Debug|Win32.ActiveCfg = Debug|Win32 + {349EE8FA-7D25-4909-AAF5-FF3FADE72187}.Debug|x64.ActiveCfg = Debug|x64 + {349EE8FA-7D25-4909-AAF5-FF3FADE72187}.Release|Win32.ActiveCfg = Release|Win32 + {349EE8FA-7D25-4909-AAF5-FF3FADE72187}.Release|x64.ActiveCfg = Release|x64 + {F4938DB0-3DE7-4737-9C5A-EAD1BE819F87}.Debug|Win32.ActiveCfg = Debug|Win32 + {F4938DB0-3DE7-4737-9C5A-EAD1BE819F87}.Debug|Win32.Build.0 = Debug|Win32 + {F4938DB0-3DE7-4737-9C5A-EAD1BE819F87}.Debug|x64.ActiveCfg = Debug|x64 + {F4938DB0-3DE7-4737-9C5A-EAD1BE819F87}.Debug|x64.Build.0 = Debug|x64 + {F4938DB0-3DE7-4737-9C5A-EAD1BE819F87}.Release|Win32.ActiveCfg = Release|Win32 + {F4938DB0-3DE7-4737-9C5A-EAD1BE819F87}.Release|Win32.Build.0 = Release|Win32 + {F4938DB0-3DE7-4737-9C5A-EAD1BE819F87}.Release|x64.ActiveCfg = Release|x64 + {F4938DB0-3DE7-4737-9C5A-EAD1BE819F87}.Release|x64.Build.0 = Release|x64 + {3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}.Debug|Win32.ActiveCfg = Debug|Win32 + {3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}.Debug|Win32.Build.0 = Debug|Win32 + {3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}.Debug|x64.ActiveCfg = Debug|x64 + {3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}.Debug|x64.Build.0 = Debug|x64 + {3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}.Release|Win32.ActiveCfg = Release|Win32 + {3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}.Release|Win32.Build.0 = Release|Win32 + {3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}.Release|x64.ActiveCfg = Release|x64 + {3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/_libusb_dll_2008.vcproj b/_libusb_dll_2008.vcproj new file mode 100644 index 0000000..3512b98 --- /dev/null +++ b/_libusb_dll_2008.vcproj @@ -0,0 +1,378 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_libusb_static_2008.vcproj b/_libusb_static_2008.vcproj new file mode 100644 index 0000000..8541676 --- /dev/null +++ b/_libusb_static_2008.vcproj @@ -0,0 +1,332 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bd.cmd b/bd.cmd deleted file mode 100644 index 4fe42bb..0000000 --- a/bd.cmd +++ /dev/null @@ -1,72 +0,0 @@ -@echo off -rem produce the DDK binary files for snapshots -rem !!!THIS SCRIPT IS FOR INTERNAL DEVELOPER USE ONLY!!! - -if NOT x%DDK_TARGET_OS%==xWinXP goto usage - -mkdir E:\dailies\%DATE% -for %%A in (MS32 MS64) do mkdir E:\dailies\%DATE%\%%A -for %%A in (MS32 MS64) do mkdir E:\dailies\%DATE%\%%A\static -for %%A in (MS32 MS64) do mkdir E:\dailies\%DATE%\%%A\dll -for %%A in (source bin32 bin64) do mkdir E:\dailies\%DATE%\examples\%%A -copy libusb\libusb.h E:\dailies\%DATE%\ -copy libusb\msvc\stdint.h E:\dailies\%DATE%\ -copy libusb\libusb-1.0.def E:\dailies\%DATE%\ -copy examples\*.c E:\dailies\%DATE%\examples\source - -set ORG_BUILD_ALT_DIR=%BUILD_ALT_DIR% -set ORG_BUILDARCH=%_BUILDARCH% -set ORG_PATH=%PATH% -set ORG_BUILD_DEFAULT_TARGETS=%BUILD_DEFAULT_TARGETS% - -set 386=1 -set AMD64= -set BUILD_DEFAULT_TARGETS=-386 -set _AMD64bit= -set _BUILDARCH=x86 -set PATH=%BASEDIR%\bin\x86;%BASEDIR%\bin\x86\x86 - -call ddk_build - -@echo off -copy Win32\Release\lib\libusb-1.0.lib E:\dailies\%DATE%\MS32\static -copy Win32\Release\examples\lsusb.exe E:\dailies\%DATE%\examples\bin32 -copy Win32\Release\examples\xusb.exe E:\dailies\%DATE%\examples\bin32 - -call ddk_build DLL - -@echo off -copy Win32\Release\lib\libusb-1.0.lib E:\dailies\%DATE%\MS32\dll -copy Win32\Release\dll\libusb-1.0.dll E:\dailies\%DATE%\MS32\dll - -set 386= -set AMD64=1 -set BUILD_DEFAULT_TARGETS=-amd64 -set _AMD64bit=true -set _BUILDARCH=AMD64 -set PATH=%BASEDIR%\bin\x86\amd64;%BASEDIR%\bin\x86 - -call ddk_build - -@echo off -copy x64\Release\lib\libusb-1.0.lib E:\dailies\%DATE%\MS64\static -copy x64\Release\examples\lsusb.exe E:\dailies\%DATE%\examples\bin64 -copy x64\Release\examples\xusb.exe E:\dailies\%DATE%\examples\bin64 - -call ddk_build DLL - -@echo off -copy x64\Release\lib\libusb-1.0.lib E:\dailies\%DATE%\MS64\dll -copy x64\Release\dll\libusb-1.0.dll E:\dailies\%DATE%\MS64\dll - -set BUILD_ALT_DIR=%ORG_BUILD_ALT_DIR% -set _BUILDARCH=%ORG_BUILDARCH% -set PATH=%ORG_PATH% -set BUILD_DEFAULT_TARGETS=%ORG_BUILD_DEFAULT_TARGETS% - -goto done - -:usage -echo must be run in a WXP build environment! - -:done \ No newline at end of file diff --git a/bm.sh b/bm.sh deleted file mode 100644 index 346d58e..0000000 --- a/bm.sh +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/sh -# produce the MinGW binary files for snapshots -# !!!THIS SCRIPT IS FOR INTERNAL DEVELOPER USE ONLY!!! - -date=`date +%Y.%m.%d` - -# -# 32 bit binaries -# -target=e:/dailies/$date/MinGW32 -git clean -f -d -x -# Not using debug (-g) in CFLAGS DRAMATICALLY reduces the size of the binaries -export CFLAGS="-O2 -m32" -export LDFLAGS="-m32" -export RCFLAGS="--target=pe-i386" -export DLLTOOLFLAGS="-m i386 -f --32" -echo `pwd` -(glibtoolize --version) < /dev/null > /dev/null 2>&1 && LIBTOOLIZE=glibtoolize || LIBTOOLIZE=libtoolize -$LIBTOOLIZE --copy --force || exit 1 -aclocal || exit 1 -autoheader || exit 1 -autoconf || exit 1 -automake -a -c || exit 1 -./configure --enable-toggable-debug -make -mkdir -p $target/static -mkdir -p $target/dll -cp -v libusb/.libs/libusb-1.0.a $target/static -cp -v libusb/.libs/libusb-1.0.dll $target/dll -cp -v libusb/.libs/libusb-1.0.dll.a $target/dll -make clean - -# -# 64 bit binaries -# -target=e:/dailies/$date/MinGW64 -export CFLAGS="-O2" -export LDFLAGS="" -export RCFLAGS="" -export DLLTOOLFLAGS="" -./configure --enable-toggable-debug -make -mkdir -p $target/static -mkdir -p $target/dll -cp -v libusb/.libs/libusb-1.0.a $target/static -cp -v libusb/.libs/libusb-1.0.dll $target/dll -cp -v libusb/.libs/libusb-1.0.dll.a $target/dll \ No newline at end of file diff --git a/examples/_lsusb_2008.vcproj b/examples/_lsusb_2008.vcproj new file mode 100644 index 0000000..70de59d --- /dev/null +++ b/examples/_lsusb_2008.vcproj @@ -0,0 +1,321 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/_xusb_2008.vcproj b/examples/_xusb_2008.vcproj new file mode 100644 index 0000000..71dcf44 --- /dev/null +++ b/examples/_xusb_2008.vcproj @@ -0,0 +1,319 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/lsusb_2008.vcproj b/examples/lsusb_2008.vcproj deleted file mode 100644 index 70de59d..0000000 --- a/examples/lsusb_2008.vcproj +++ /dev/null @@ -1,321 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/xusb_2008.vcproj b/examples/xusb_2008.vcproj deleted file mode 100644 index 71dcf44..0000000 --- a/examples/xusb_2008.vcproj +++ /dev/null @@ -1,319 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/libusb_2008.sln b/libusb_2008.sln deleted file mode 100644 index 2057702..0000000 --- a/libusb_2008.sln +++ /dev/null @@ -1,57 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libusb-1.0 (static)", "libusb_static_2008.vcproj", "{349EE8F9-7D25-4909-AAF5-FF3FADE72187}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libusb-1.0 (dll)", "libusb_dll_2008.vcproj", "{349EE8FA-7D25-4909-AAF5-FF3FADE72187}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lsusb", "examples\lsusb_2008.vcproj", "{F4938DB0-3DE7-4737-9C5A-EAD1BE819F87}" - ProjectSection(ProjectDependencies) = postProject - {349EE8F9-7D25-4909-AAF5-FF3FADE72187} = {349EE8F9-7D25-4909-AAF5-FF3FADE72187} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xusb", "examples\xusb_2008.vcproj", "{3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}" - ProjectSection(ProjectDependencies) = postProject - {349EE8F9-7D25-4909-AAF5-FF3FADE72187} = {349EE8F9-7D25-4909-AAF5-FF3FADE72187} - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {349EE8F9-7D25-4909-AAF5-FF3FADE72187}.Debug|Win32.ActiveCfg = Debug|Win32 - {349EE8F9-7D25-4909-AAF5-FF3FADE72187}.Debug|Win32.Build.0 = Debug|Win32 - {349EE8F9-7D25-4909-AAF5-FF3FADE72187}.Debug|x64.ActiveCfg = Debug|x64 - {349EE8F9-7D25-4909-AAF5-FF3FADE72187}.Debug|x64.Build.0 = Debug|x64 - {349EE8F9-7D25-4909-AAF5-FF3FADE72187}.Release|Win32.ActiveCfg = Release|Win32 - {349EE8F9-7D25-4909-AAF5-FF3FADE72187}.Release|Win32.Build.0 = Release|Win32 - {349EE8F9-7D25-4909-AAF5-FF3FADE72187}.Release|x64.ActiveCfg = Release|x64 - {349EE8F9-7D25-4909-AAF5-FF3FADE72187}.Release|x64.Build.0 = Release|x64 - {349EE8FA-7D25-4909-AAF5-FF3FADE72187}.Debug|Win32.ActiveCfg = Debug|Win32 - {349EE8FA-7D25-4909-AAF5-FF3FADE72187}.Debug|x64.ActiveCfg = Debug|x64 - {349EE8FA-7D25-4909-AAF5-FF3FADE72187}.Release|Win32.ActiveCfg = Release|Win32 - {349EE8FA-7D25-4909-AAF5-FF3FADE72187}.Release|x64.ActiveCfg = Release|x64 - {F4938DB0-3DE7-4737-9C5A-EAD1BE819F87}.Debug|Win32.ActiveCfg = Debug|Win32 - {F4938DB0-3DE7-4737-9C5A-EAD1BE819F87}.Debug|Win32.Build.0 = Debug|Win32 - {F4938DB0-3DE7-4737-9C5A-EAD1BE819F87}.Debug|x64.ActiveCfg = Debug|x64 - {F4938DB0-3DE7-4737-9C5A-EAD1BE819F87}.Debug|x64.Build.0 = Debug|x64 - {F4938DB0-3DE7-4737-9C5A-EAD1BE819F87}.Release|Win32.ActiveCfg = Release|Win32 - {F4938DB0-3DE7-4737-9C5A-EAD1BE819F87}.Release|Win32.Build.0 = Release|Win32 - {F4938DB0-3DE7-4737-9C5A-EAD1BE819F87}.Release|x64.ActiveCfg = Release|x64 - {F4938DB0-3DE7-4737-9C5A-EAD1BE819F87}.Release|x64.Build.0 = Release|x64 - {3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}.Debug|Win32.ActiveCfg = Debug|Win32 - {3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}.Debug|Win32.Build.0 = Debug|Win32 - {3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}.Debug|x64.ActiveCfg = Debug|x64 - {3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}.Debug|x64.Build.0 = Debug|x64 - {3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}.Release|Win32.ActiveCfg = Release|Win32 - {3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}.Release|Win32.Build.0 = Release|Win32 - {3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}.Release|x64.ActiveCfg = Release|x64 - {3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/libusb_dll_2008.vcproj b/libusb_dll_2008.vcproj deleted file mode 100644 index 3512b98..0000000 --- a/libusb_dll_2008.vcproj +++ /dev/null @@ -1,378 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/libusb_static_2008.vcproj b/libusb_static_2008.vcproj deleted file mode 100644 index 8541676..0000000 --- a/libusb_static_2008.vcproj +++ /dev/null @@ -1,332 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- cgit v1.2.1