diff options
-rw-r--r-- | _bd.cmd | 8 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | libusb/libusb_version.h | 2 |
3 files changed, 10 insertions, 2 deletions
@@ -28,14 +28,18 @@ set _AMD64bit= set _BUILDARCH=x86 set PATH=%BASEDIR%\bin\x86;%BASEDIR%\bin\x86\x86 +cd msvc call ddk_build +cd .. @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 +cd msvc call ddk_build DLL +cd .. @echo off copy Win32\Release\lib\libusb-1.0.lib E:\dailies\%DATE%\MS32\dll @@ -48,14 +52,18 @@ set _AMD64bit=true set _BUILDARCH=AMD64 set PATH=%BASEDIR%\bin\x86\amd64;%BASEDIR%\bin\x86 +cd msvc call ddk_build +cd .. @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 +cd msvc call ddk_build DLL +cd .. @echo off copy x64\Release\lib\libusb-1.0.lib E:\dailies\%DATE%\MS64\dll diff --git a/configure.ac b/configure.ac index 7b9e540..39daa13 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ m4_define(LIBUSB_MAJOR, [1]) m4_define(LIBUSB_MINOR, [0]) m4_define(LIBUSB_MICRO, [8]) -m4_define(LIBUSB_NANO, [10322]) +m4_define(LIBUSB_NANO, [10323]) AC_INIT([libusb], LIBUSB_MAJOR.LIBUSB_MINOR.LIBUSB_MICRO, [libusb-devel@lists.sourceforge.net], [libusb], [http://www.libusb.org/]) diff --git a/libusb/libusb_version.h b/libusb/libusb_version.h index 22b4744..338ba1a 100644 --- a/libusb/libusb_version.h +++ b/libusb/libusb_version.h @@ -24,6 +24,6 @@ #define LIBUSB_VERSION_MAJOR 1 #define LIBUSB_VERSION_MINOR 0 #define LIBUSB_VERSION_MICRO 8 -#define LIBUSB_VERSION_NANO 10322 +#define LIBUSB_VERSION_NANO 10323 #endif |