Travis-CI: configure with CMake
diff --git a/.travis.yml b/.travis.yml
index 3de0241..12a6b33 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,25 +3,13 @@
 compiler:
  - clang
  - gcc
-install:
- - git clone https://github.com/ninja-build/ninja.git /tmp/ninja
- - pushd /tmp/ninja
- - git checkout release
- - python configure.py --bootstrap
- - mkdir -p $HOME/.local/bin
- - install -m 755 /tmp/ninja/ninja $HOME/.local/bin/ninja
- - popd
- - export PATH=$HOME/.local/bin:$PATH
- - pip install --user six
- - pip install --user git+https://github.com/Maratyszcza/confu
-before_script:
- - confu setup
- - ./configure.py
- - ninja
 script:
- - ninja test
- - ninja bench
+ - mkdir build
+ - cd build
+ - cmake .. -G Ninja
+ - ninja
+ - ctest --verbose
 addons:
   apt:
     packages:
-    - python-pip
+    - ninja-build