diff options
author | Vincent Richard <[email protected]> | 2013-12-29 13:09:04 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-12-29 13:09:04 +0000 |
commit | 0460b6b9da0e6889a8b49d7cf3bac4478e00f5ec (patch) | |
tree | 47ddb13a5b50ae908e3386a4c63e37c0dfa6f5d6 | |
parent | Update HACKING (diff) | |
download | vmime-0460b6b9da0e6889a8b49d7cf3bac4478e00f5ec.tar.gz vmime-0460b6b9da0e6889a8b49d7cf3bac4478e00f5ec.zip |
Fixed path to header files. Removed useless echoes.
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index c2daad04..2b5b0f1f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,12 +30,8 @@ script: - cd _build - cmake .. -DCMAKE_INSTALL_PREFIX=../_install $OPTIONS - cmake .. -L - - echo "============================== config.hpp ==============================" - - cat ../vmime/config.hpp - - echo "========================== export-shared.hpp ===========================" - - cat ../vmime/export-shared.hpp - - echo "========================== export-static.hpp ===========================" - - cat ../vmime/export-static.hpp - - echo "================================ BUILD =================================" + - cat ../src/vmime/config.hpp + - cat ../src/vmime/export-shared.hpp + - cat ../src/vmime/export-static.hpp - cmake --build . --target install - ctest |