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:
parent
22bcfb2b2f
commit
f237beee15
7 changed files with 103 additions and 31 deletions
2
Makefile
2
Makefile
|
@ -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
|
||||
|
|
Reference in a new issue