Skip to content

Commit

Permalink
add travis-ci script (currently failing) + basic .gitignore file
Browse files Browse the repository at this point in the history
  • Loading branch information
abma committed Jan 23, 2017
1 parent c7911f4 commit 531e654
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
CMakeFiles/
Makefile
cmake_install.cmake
*.swp

/src-IL/IL.pc
/src-ILU/ILU.pc
/src-ILUT/ILUT.pc
/DevIL/src-IL/include/config.h
/CMakeCache.txt
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#
# libdevil travis hook
#

language: cpp

compiler:
- clang
- gcc
before_script:
- sudo apt-get install libpng12-dev zlib1g-dev libjpeg-dev libtiff4-dev libmng-dev
- sudo apt-get install libjasper-dev liblcms1-dev freeglut3-dev libsdl1.2-dev
script:
- cmake DevIL
- make all

0 comments on commit 531e654

Please sign in to comment.