Browse Source

Fix build

DricomDragon 4 years ago
parent
commit
61ee425b1b
4 changed files with 7 additions and 7 deletions
  1. 1 1
      blocSpawn/Input.h
  2. 3 3
      blocSpawn/main.cpp
  3. 1 1
      blocSpawn/makefile
  4. 2 2
      blocSpawn/texturer.h

+ 1 - 1
blocSpawn/Input.h

@@ -5,7 +5,7 @@
 ///Adaptation pour CMake
 
 // Include
-#include <SDL.h>
+#include <SDL2/SDL.h>
 
 
 class Input

+ 3 - 3
blocSpawn/main.cpp

@@ -1,6 +1,6 @@
 #include <iostream>
-#include <SDL.h>
-#include <Box2D/Box2D.h>
+#include <SDL2/SDL.h>
+#include <box2d/box2d.h>
 #include "texturer.h"
 #include "Input.h"
 
@@ -100,7 +100,7 @@ int main() {
 
         // Foreground
         b2Vec2 pos(crateBody->GetPosition());
-        float32 angle(crateBody->GetAngle());
+        float angle(crateBody->GetAngle());
 
         SDL_Rect fillRect = {(int)(pos.x * zoom), (int)(pos.y * zoom), 100, 100};
         SDL_SetRenderDrawColor(ren, 0xFF, 0x00, 0x00, 0xFF);

+ 1 - 1
blocSpawn/makefile

@@ -1,6 +1,6 @@
 CXX=g++
 CXXFLAGS=-std=c++11
-LDFLAGS=-lSDL -lSDL_gfx -lbox2d
+LDFLAGS=-lSDL2 -lSDL2_image -lbox2d
 INC=
 LIB=
 

+ 2 - 2
blocSpawn/texturer.h

@@ -6,8 +6,8 @@
 #define HELLOSDL_TEXTURER_H
 
 #include <iostream>
-#include <SDL.h>
-#include <SDL_image.h>
+#include <SDL2/SDL.h>
+#include <SDL2/SDL_image.h>
 
 
 void logSDLError(std::ostream &os, const std::string &msg);