Commit 4df56708 authored by rusty1s's avatar rusty1s
Browse files

windows

parent f7eedf67
#!/bin/bash
if [ "${TRAVIS_OS_NAME}" = "windows" ]; then
choco install make
cmake --help
fi
METIS=metis-5.1.0
wget -nv http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/${METIS}.tar.gz
tar -xvzf ${METIS}.tar.gz
cd ${METIS} || exit
sed -i.bak -e 's/IDXTYPEWIDTH 32/IDXTYPEWIDTH 64/g' include/metis.h
echo "CONFIG"
make config
echo "MAKE"
make
echo "MAKE INSTALL"
sudo make install
if [ "${TRAVIS_OS_NAME}" = "windows" ]; then
make config
make
sudo make install
else
./vsgen
fi
cd ..
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment