summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2016-05-12 13:43:06 (GMT)
committerStefan Radomski <github@mintwerk.de>2016-05-12 13:43:06 (GMT)
commitadbae7680e89795041cbfff32768d15683416f1b (patch)
tree8a0e2affcf64a6a7ea87d794b3a4fa1cd630c896
parent59b51d5e70bd51a59d03c46e44148f53a0bf99a6 (diff)
downloaduscxml-adbae7680e89795041cbfff32768d15683416f1b.zip
uscxml-adbae7680e89795041cbfff32768d15683416f1b.tar.gz
uscxml-adbae7680e89795041cbfff32768d15683416f1b.tar.bz2
Made C++11 requirement more explicit
-rw-r--r--.travis.yml16
-rw-r--r--README.md3
2 files changed, 16 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 0e5dca4..0bc2cd2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,9 +1,21 @@
+sudo: false
language: cpp
compiler:
- gcc
- clang
+install:
+ - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
+addons:
+ apt:
+ sources:
+ - ubuntu-toolchain-r-test
+ packages:
+ - gcc-4.8
+ - g++-4.8
+ - clang
+
before_install:
- - sudo apt-get update -qq
- - sudo apt-get install -qq libxml2-dev libcurl4-openssl-dev
+ - sudo apt-get update -qq
+ - sudo apt-get install -qq libxml2-dev libcurl4-openssl-dev
script: mkdir build && cd build && cmake .. && make
diff --git a/README.md b/README.md
index f052151..7029b3c 100644
--- a/README.md
+++ b/README.md
@@ -17,11 +17,12 @@ I will update the documentation once I finished up on some polishing and remaini
### Important Changes
+ * Compiling will require a C++11 compiler now
+ * Dependencies are compiled at configure-time
* Replaced Arabica DOM implementation with Xerces-C
* New micro-step implementation
* Removed unsupported Invokers
* Data-model DOM bindings now generated by SWIG
- * Dependencies are compiled at configure-time
### Still Missing