mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-09 07:20:07 +00:00

use MSYS makefiles generator add bash script for running mingw on appveyor add --login and fix run paths use msys style path to appveyor-mingw.sh add mingw path to /etc/fstab
7 lines
181 B
Bash
Executable File
7 lines
181 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
cd `dirname "$0"`/../build
|
|
echo 'C:\MinGW\ /MinGW' > /etc/fstab
|
|
cmake -D ENABLE_TRACE=ON -D BUILD_CLAR=ON .. -G"$GENERATOR"
|
|
cmake --build . --config RelWithDebInfo
|