Skip to content
This repository has been archived by the owner on Feb 15, 2023. It is now read-only.

Fix the build dependencies #417

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,16 @@ os:
- osx

install:
- wget 'https://googletest.googlecode.com/files/gtest-1.7.0.zip'

# Set up gtest
- apt-get install libgtest-dev # Debian/Ubuntu
- sudo apt-get install cmake
- cd /usr/src/gtest
- sudo cmake CMakeLists.txt
- sudo make
- sudo cp *.a /usr/lib

# This project
- unzip gtest-1.7.0.zip
- ln -s gtest-1.7.0 gtest
- sudo pip install BeautifulSoup
Expand Down