Instructions pour Travis CI

* Ajout de .travis.yml
* Modification de l'instruction test en testing (ne fait pas la même chose que les test habituels)
* Ajout d'une image par défaut dans test.cpp
* Corrections d'erreurs qui empêchaient la compilation
This commit is contained in:
Geoffrey Frogeye 2014-05-03 19:57:33 +02:00
parent 22bcfb2b2f
commit f237beee15
7 changed files with 103 additions and 31 deletions

View file

@ -13,7 +13,7 @@ SRCPATH = src/
main: main.o image.o
$(CXX) $(OBJPATH)main.o $(OBJPATH)image.o -o $(EXEPATH)$@ $(CXXFLAGS)
test: test.o image.o
testing: test.o image.o
$(CXX) $(OBJPATH)test.o $(OBJPATH)image.o -o $(EXEPATH)$@ $(CXXFLAGS)
# Dépendances