Parcourir la source

Make image rotator compilable

DricomDragon il y a 4 ans
Parent
commit
9108b5214a

+ 1 - 0
sdl1/mirrorImage/.gitignore

@@ -0,0 +1 @@
+bin/

+ 1 - 1
sdl1/mirrorImage/main.cpp

@@ -1,5 +1,5 @@
 #include <iostream>
-#include <SDL.h>
+#include <SDL/SDL.h>
 #include "retourner.h"
 
 int main ( int argc, char** argv )

+ 25 - 0
sdl1/mirrorImage/makefile

@@ -0,0 +1,25 @@
+CXX=g++
+CXXFLAGS=
+LDFLAGS=-lSDL
+INC=
+LIB=
+
+EXEC=SdlApp
+SRC=$(shell find . -name '*.cpp')
+OBJ=$(SRC:.cpp=.o)
+
+$(EXEC): $(OBJ)
+	@mkdir -p bin
+	$(CXX) -o bin/$@ $^ $(LDFLAGS) $(LIB)
+
+%.o : %.cpp
+	$(CXX) -o $@ -c $< $(CXXFLAGS) $(INC)
+
+clean:
+	rm -rf $(OBJ)
+
+distclean: clean
+	rm -rf ./bin
+
+exec: $(EXEC)
+	./bin/$(EXEC)

+ 1 - 1
sdl1/mirrorImage/retourner.h

@@ -2,7 +2,7 @@
 #define RETOURNER_H_INCLUDED
 
 #include <iostream>
-#include <SDL.h>
+#include <SDL/SDL.h>
 
 SDL_Surface* retournement(SDL_Surface* originale, int nbQuarts);
 /** retournement() \brief Permet de créer une nouvelle image pivotée.