Commit e7ca3a7b authored by Matthew Hausknecht's avatar Matthew Hausknecht

Updated travis.

parent c20aff2f
...@@ -9,6 +9,10 @@ addons: ...@@ -9,6 +9,10 @@ addons:
- libboost-dev - libboost-dev
- libboost-system-dev - libboost-system-dev
- libboost-filesystem-dev - libboost-filesystem-dev
install:
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
brew install qt
fi
os: os:
- linux - linux
- osx - osx
......
...@@ -39,6 +39,9 @@ set(LIBRCSC_LINK_DIR ${BINARY_DIR}/lib) ...@@ -39,6 +39,9 @@ set(LIBRCSC_LINK_DIR ${BINARY_DIR}/lib)
if(BUILD_SOCCERWINDOW) if(BUILD_SOCCERWINDOW)
find_package(Qt4 REQUIRED COMPONENTS QTCORE QTGUI QTNETWORK) find_package(Qt4 REQUIRED COMPONENTS QTCORE QTGUI QTNETWORK)
if(NOT Qt4_FOUND)
message(FATAL_ERROR "Qt4 is needed for soccerwindow2 visualizer. Install Qt4 or disable soccerwindow2: \"cmake -DBUILD_SOCCERWINDOW=False\"")
endif()
ExternalProject_Add(soccerwindow2 ExternalProject_Add(soccerwindow2
DEPENDS librcsc DEPENDS librcsc
GIT_REPOSITORY "https://github.com/mhauskn/soccerwindow2.git" GIT_REPOSITORY "https://github.com/mhauskn/soccerwindow2.git"
......
RoboCup 2D Half Field Offense RoboCup 2D Half Field Offense
=============== ===============
[![Build Status](https://travis-ci.org/LARG/HFO.svg?branch=master)](https://travis-ci.org/LARG/HFO)
![3 on 3 HFO](https://github.com/mhauskn/HFO/blob/master/img/hfo3on3.png) ![3 on 3 HFO](https://github.com/mhauskn/HFO/blob/master/img/hfo3on3.png)
[Half Field Offense in RoboCup 2D Soccer](http://www.cs.utexas.edu/~AustinVilla/sim/halffieldoffense/) is a subtask in RoboCup simulated soccer, modeling a situation in which the offense of one team has to get past the defense of the opposition in order to shoot goals. This repository offers the ability to quickly and easily interface your learning agent with the HFO domain. Interfaces are provided for C++ and Python. [Half Field Offense in RoboCup 2D Soccer](http://www.cs.utexas.edu/~AustinVilla/sim/halffieldoffense/) is a subtask in RoboCup simulated soccer, modeling a situation in which the offense of one team has to get past the defense of the opposition in order to shoot goals. This repository offers the ability to quickly and easily interface your learning agent with the HFO domain. Interfaces are provided for C++ and Python.
......
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