Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jarro2783/cxxopts.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarryd Beck <jarro.2783@gmail.com>2016-11-30 23:58:20 +0300
committerJarryd Beck <jarro.2783@gmail.com>2016-12-01 00:03:27 +0300
commit78d99b981c4c3d4304795fd04ac240507acf9774 (patch)
tree368fdb7a25efe95c3ecfb82851b707d186977656 /.travis.yml
parent2b8788f3369551b9df4b2f2d730f143f9774dc27 (diff)
install icu on osx
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index f5e8d19..496b3a6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -44,3 +44,7 @@ script: >
cmake -DCXXOPTS_BUILD_TESTS=ON -DCMAKE_CXX_COMPILER=$COMPILER
-DCMAKE_CXX_FLAGS=$CXXFLAGS $UNICODE_OPTIONS .
&& make && make ARGS=--output-on-failure test
+
+before_install:
+ - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
+ - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install icu4c; fi