diff options
| author | Peter Mackay <mackay.pete+git@gmail.com> | 2016-10-21 15:54:03 +0100 |
|---|---|---|
| committer | Karl Schultz <karl@lunarg.com> | 2016-12-06 08:48:07 -0700 |
| commit | 54c08c19119947199d2b61621b42371732e0c754 (patch) | |
| tree | 40196420a11f02c6b077613612c07da3ec805f19 | |
| parent | 2d905018b61c65e6d70712d6772f0eabba8e887a (diff) | |
| download | usermoji-54c08c19119947199d2b61621b42371732e0c754.tar.xz | |
build: Add Travis CI file
This initial revision only supports builds for Linux.
Pull Request #1082
Change-Id: I0200eb7ae33ff23af2014624ee399bfe1929aaa8
| -rw-r--r-- | .travis.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..823f5dda --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: c++ +os: linux +dist: trusty +before_install: sudo apt-get install git cmake build-essential bison libx11-dev libxcb1-dev +script: + - ./update_external_sources.sh + - cmake -H. -Bdbuild -DCMAKE_BUILD_TYPE=Debug + - cd dbuild + - make |
