mirror of
https://github.com/RPCS3/libusb.git
synced 2024-11-23 10:09:41 +00:00
ca0b6c09fa
The sub-directory created to store the generated files and build objects was not being used as intended, because each invocation of the bash starts in the home directory. Fix this by changing to the intended directory prior to each command invocation. Also replace the invocation of autogen.sh with bootstrap.sh, since using autogen.sh calls ./configure and we weren't using the results of that work. Instead we call configure directly from the sub-directory while enabling the examples and test builds (for Cygwin) as autogen.sh would do. Also fix the invalid value for the --build option provided to the x64 build of MinGW. Finally, propagate errors from each script command so that failures are caught and reported. Signed-off-by: Chris Dickens <christopher.a.dickens@gmail.com>
12 lines
519 B
Batchfile
12 lines
519 B
Batchfile
echo on
|
|
SetLocal EnableDelayedExpansion
|
|
|
|
if [%Configuration%] NEQ [Release] exit 0
|
|
if [%Platform%] NEQ [Win32] exit 0
|
|
|
|
C:\cygwin\bin\bash -e -l -c "./bootstrap.sh" || exit /B
|
|
C:\cygwin\bin\bash -e -l -c "mkdir build-Win32-cygwin" || exit /B
|
|
C:\cygwin\bin\bash -e -l -c "cd build-Win32-cygwin && ../configure --enable-examples-build --enable-tests-build" || exit /B
|
|
C:\cygwin\bin\bash -e -l -c "cd build-Win32-cygwin && make -j4" || exit /B
|
|
C:\cygwin\bin\bash -e -l -c "cd build-Win32-cygwin && make install" || exit /B
|