Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed include paths for Visual C++
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Nov 22, 2009
1 parent 130f1bb commit a8e2e9a
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions test/automated/Makefile
@@ -1,10 +1,10 @@


CFLAGS := -W -Wall -Wextra -g -I. `sdl-config --cflags`
CFLAGS := -W -Wall -Wextra -g `sdl-config --cflags`
LDFLAGS := `sdl-config --libs`

# If it doesn't pick up defaults
#CFLAGS := -I. -D_GNU_SOURCE=1 -D_REENTRANT -I/usr/local/include/SDL
#CFLAGS := -D_GNU_SOURCE=1 -D_REENTRANT -I/usr/local/include/SDL
#LDFLAGS := -lm -ldl -lesd -lpthread

SRC := testsdl.c \
Expand Down
2 changes: 1 addition & 1 deletion test/automated/audio/audio.c
Expand Up @@ -8,7 +8,7 @@


#include "SDL.h"
#include "SDL_at.h"
#include "../SDL_at.h"


/**
Expand Down
4 changes: 2 additions & 2 deletions test/automated/common/common.c
Expand Up @@ -8,9 +8,9 @@


#include "SDL.h"
#include "SDL_at.h"
#include "../SDL_at.h"

#include "common/common.h"
#include "common.h"


/**
Expand Down
12 changes: 6 additions & 6 deletions test/automated/common/images.h
Expand Up @@ -4,17 +4,17 @@
# define IMAGES_H


#include "common/common.h"
#include "common.h"


/*
* Pull in images for testcases.
*/
#include "common/img_primitives.c"
#include "common/img_primitivesblend.c"
#include "common/img_face.c"
#include "common/img_blit.c"
#include "common/img_blitblend.c"
#include "img_primitives.c"
#include "img_primitivesblend.c"
#include "img_face.c"
#include "img_blit.c"
#include "img_blitblend.c"


#endif /* IMAGES_H */
Expand Down
2 changes: 1 addition & 1 deletion test/automated/platform/platform.c
Expand Up @@ -12,9 +12,9 @@


#include "SDL.h"
#include "SDL_at.h"
#include "SDL_endian.h"
#include "SDL_cpuinfo.h"
#include "../SDL_at.h"


/*
Expand Down
6 changes: 3 additions & 3 deletions test/automated/render/render.c
Expand Up @@ -8,15 +8,15 @@


#include "SDL.h"
#include "SDL_at.h"
#include "../SDL_at.h"

#include "common/common.h"
#include "../common/common.h"


/*
* Pull in images for testcases.
*/
#include "common/images.h"
#include "../common/images.h"


#define SCREEN_W 80
Expand Down
2 changes: 1 addition & 1 deletion test/automated/rwops/rwops.c
Expand Up @@ -8,7 +8,7 @@


#include "SDL.h"
#include "SDL_at.h"
#include "../SDL_at.h"


#define RWOPS_READ "rwops/read"
Expand Down
6 changes: 3 additions & 3 deletions test/automated/surface/surface.c
Expand Up @@ -10,15 +10,15 @@
#include "SDL.h"
#include "SDL_surface.h"
#include "SDL_video.h"
#include "SDL_at.h"
#include "../SDL_at.h"

#include "common/common.h"
#include "../common/common.h"


/*
* Pull in images for testcases.
*/
#include "common/images.h"
#include "../common/images.h"


/*
Expand Down

0 comments on commit a8e2e9a

Please sign in to comment.