making sure builds always installed to the same dir.

This commit is contained in:
Jammyjamjamman
2019-04-22 20:43:23 +01:00
parent 5a0fe88e72
commit 0bcef76a7b

View File

@@ -66,13 +66,13 @@ script: |
mkdir build;
cd build;
cmake .. -DCMAKE_INSTALL_PREFIX=/usr;
make && make install;
fi
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
mkdir build;
cd build;
cmake .. -DCMAKE_INSTALL_PREFIX=/usr;
make && make install;
echo 'Dependencies:';
otool -L glest;
fi
@@ -80,7 +80,7 @@ script: |
mkdir build;
cd build;
cmake .. -DFORCE_EMBEDDED_LIBS=ON -DCMAKE_INSTALL_PREFIX=/usr;
make && make install;
fi
make -j$(nproc) && make install DESTDIR=../Glest;
cd ..;