Skip to content

Commit

Permalink
Teach travis to build the simple example project.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Liew committed Oct 20, 2013
1 parent 2dd42ff commit d78edcb
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .travis.yml
Expand Up @@ -8,6 +8,13 @@ before_install:
- sudo apt-get update
- sudo apt-get install cmake
- mkdir build && cd build
- cmake -G "Unix Makefiles" ..
- mkdir simple_example
- mkdir stp && cd stp
- cmake -G "Unix Makefiles" ../..
script:
# Build STP
- make
# Build example project. We assume that the build installed itself to the CMake user package registry (~/.cmake/packages/)
- cd ../simple_example
- cmake -G "Unix Makefiles" ../../examples/simple
- make

0 comments on commit d78edcb

Please sign in to comment.