diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-10-30 11:45:31 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-10-30 11:45:31 -0400 |
commit | dcefab4d5e9d9cff3bfbc65e45fae9309d426a69 (patch) | |
tree | 9a6ac9b47a512847b31aa03de7bfa143916dae29 | |
parent | 59a2fce5a1149b076fdf49701ad729e9536c7eee (diff) |
win32 build
-rw-r--r-- | Makefile | 5 | ||||
-rw-r--r-- | freetype6.dll | bin | 0 -> 522240 bytes | |||
-rw-r--r-- | glew32.dll | bin | 0 -> 403968 bytes | |||
-rw-r--r-- | include/common.h | 6 | ||||
-rw-r--r-- | main.cpp | 11 |
5 files changed, 20 insertions, 2 deletions
@@ -1,5 +1,7 @@ LIBS = -lGL -lGLEW -lSDL2main -lSDL2 -lfreetype -lSDL2_image -lSDL2_mixer
+WIN_LIBS = -lopengl32 -lglew32 -lmingw32 -lSDL2main -lSDL2 -lSDL2_image -lSDL2_mixer -lfreetype
+
FLAGS = -m32 -std=c++11 -Iinclude -Iinclude/freetype2
all:
@@ -8,6 +10,9 @@ all: @echo " CXX main.cpp"
@g++ $(FLAGS) -o main main.cpp out/*.o $(LIBS)
+win32:
+ @g++ $(FLAGS) -o main main.cpp src/*.cpp $(WIN_LIBS)
+
clean:
@echo " RM main"
@-rm -f main
diff --git a/freetype6.dll b/freetype6.dll Binary files differnew file mode 100644 index 0000000..e35edc6 --- /dev/null +++ b/freetype6.dll diff --git a/glew32.dll b/glew32.dll Binary files differnew file mode 100644 index 0000000..c9414c2 --- /dev/null +++ b/glew32.dll diff --git a/include/common.h b/include/common.h index 359e825..25d5abf 100644 --- a/include/common.h +++ b/include/common.h @@ -14,6 +14,7 @@ * Include GLEW and the SDL 2 headers */ +#define GLEW_STATIC #include <GL/glew.h> #include <SDL2/SDL.h> @@ -23,6 +24,11 @@ #include <string> #include <fstream> +#ifdef __WIN32__ +typedef unsigned int uint; +#undef near +#endif + /* * Include file headers */ @@ -199,10 +199,15 @@ vec2 offset; * of milliseconds that have passed sine the epoch. * */ + +#ifdef __WIN32__ +#define millis() SDL_GetTicks() +#else unsigned int millis(void){ std::chrono::system_clock::time_point now=std::chrono::system_clock::now(); return std::chrono::duration_cast<std::chrono::milliseconds>(now.time_since_epoch()).count(); } +#endif typedef enum { SUNNY = 0, @@ -237,10 +242,10 @@ int main(int argc, char *argv[]){ // Run SDL_Quit when main returns atexit(SDL_Quit); - /*Untitled + /* * (Attempt to) Initialize SDL_image libraries with IMG_INIT_PNG so that we can load PNG * textures for the entities and stuff. - * Untitled + * */ if(!(IMG_Init(IMG_INIT_PNG) & IMG_INIT_PNG)){ @@ -313,7 +318,9 @@ int main(int argc, char *argv[]){ */ GLenum err; +#ifndef __WIN32__ glewExperimental = GL_TRUE; +#endif if((err=glewInit()) != GLEW_OK){ std::cout << "GLEW was not able to initialize! Error: " << glewGetErrorString(err) << std::endl; return -1; |