X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=.travis.sh;fp=.travis.sh;h=6b69c638ac94fc639c842137de4d59f1f2899e64;hb=8ecead4f05ae9b5d20598e9ce27ec81ee8c30c57;hp=cefeed142704b2ab020d5830e6abe82876f0687e;hpb=8259385af50e29257b511783f5694b9ea83b6f24;p=fw%2Fstlink diff --git a/.travis.sh b/.travis.sh index cefeed1..6b69c63 100755 --- a/.travis.sh +++ b/.travis.sh @@ -6,7 +6,13 @@ else brew install libusb fi -mkdir build -cd build -cmake .. -make +if [ "$BUILD_SYSTEM" == "cmake" ]; then + mkdir build + cd build + cmake .. + make +else + ./autogen.sh + ./configure + make +fi