TRAVIS: include demo windows and activate warnings
This commit is contained in:
parent
6bddc5c5f0
commit
b17ec490ef
@ -11,5 +11,6 @@ before_install:
|
|||||||
- if [ $TRAVIS_OS_NAME == linux ]; then sudo add-apt-repository -y ppa:pyglfw/pyglfw && sudo apt-get update -qq && sudo apt-get install -y --no-install-recommends libglfw3 libglfw3-dev libglew-dev; fi
|
- if [ $TRAVIS_OS_NAME == linux ]; then sudo add-apt-repository -y ppa:pyglfw/pyglfw && sudo apt-get update -qq && sudo apt-get install -y --no-install-recommends libglfw3 libglfw3-dev libglew-dev; fi
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- make -C demo/glfw_opengl3
|
- make -C demo/glfw_opengl3 CFLAGS="-Wall -DINCLUDE_ALL"
|
||||||
- make -C demo/glfw_opengl2
|
- make -C demo/glfw_opengl2
|
||||||
|
- make -C example
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
BIN = demo
|
BIN = demo
|
||||||
|
|
||||||
# Flags
|
# Flags
|
||||||
CFLAGS = -std=c99 -pedantic -O2
|
CFLAGS += -std=c99 -pedantic -O2
|
||||||
|
|
||||||
SRC = main.c
|
SRC = main.c
|
||||||
OBJ = $(SRC:.c=.o)
|
OBJ = $(SRC:.c=.o)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
BIN = demo
|
BIN = demo
|
||||||
|
|
||||||
# Flags
|
# Flags
|
||||||
CFLAGS = -std=c99 -pedantic -O2
|
CFLAGS += -std=c99 -pedantic -O2
|
||||||
|
|
||||||
SRC = main.c
|
SRC = main.c
|
||||||
OBJ = $(SRC:.c=.o)
|
OBJ = $(SRC:.c=.o)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
BIN = demo
|
BIN = demo
|
||||||
|
|
||||||
# Flags
|
# Flags
|
||||||
CFLAGS = -std=c99 -pedantic -O2
|
CFLAGS += -std=c99 -pedantic -O2
|
||||||
|
|
||||||
SRC = main.c
|
SRC = main.c
|
||||||
OBJ = $(SRC:.c=.o)
|
OBJ = $(SRC:.c=.o)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
BIN = demo
|
BIN = demo
|
||||||
|
|
||||||
# Flags
|
# Flags
|
||||||
CFLAGS = -std=c99 -pedantic -O2
|
CFLAGS += -std=c99 -pedantic -O2
|
||||||
|
|
||||||
SRC = main.c
|
SRC = main.c
|
||||||
OBJ = $(SRC:.c=.o)
|
OBJ = $(SRC:.c=.o)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
BIN = demo
|
BIN = demo
|
||||||
|
|
||||||
# Flags
|
# Flags
|
||||||
CFLAGS = -std=c99 -pedantic -O2
|
CFLAGS += -std=c99 -pedantic -O2
|
||||||
|
|
||||||
SRC = main.c
|
SRC = main.c
|
||||||
OBJ = $(SRC:.c=.o)
|
OBJ = $(SRC:.c=.o)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
BIN = demo
|
BIN = demo
|
||||||
|
|
||||||
# Flags
|
# Flags
|
||||||
CFLAGS = -std=c99 -pedantic -O2
|
CFLAGS += -std=c99 -pedantic -O2
|
||||||
|
|
||||||
SRC = main.c
|
SRC = main.c
|
||||||
OBJ = $(SRC:.c=.o)
|
OBJ = $(SRC:.c=.o)
|
||||||
|
@ -3,7 +3,7 @@ CC = g++
|
|||||||
BIN = demo
|
BIN = demo
|
||||||
|
|
||||||
# Flags
|
# Flags
|
||||||
CFLAGS = -s -O2
|
CFLAGS += -s -O2
|
||||||
|
|
||||||
SRC = main.cpp
|
SRC = main.cpp
|
||||||
OBJ = $(SRC:.cpp=.o)
|
OBJ = $(SRC:.cpp=.o)
|
||||||
|
@ -3,7 +3,7 @@ CC = g++
|
|||||||
BIN = demo
|
BIN = demo
|
||||||
|
|
||||||
# Flags
|
# Flags
|
||||||
CFLAGS = -s -O2
|
CFLAGS += -s -O2
|
||||||
|
|
||||||
SRC = main.cpp
|
SRC = main.cpp
|
||||||
OBJ = $(SRC:.cpp=.o)
|
OBJ = $(SRC:.cpp=.o)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
BIN = zahnrad
|
BIN = zahnrad
|
||||||
|
|
||||||
# Flags
|
# Flags
|
||||||
CFLAGS = -std=c89 -pedantic -O2
|
CFLAGS += -std=c89 -pedantic -O2
|
||||||
|
|
||||||
SRC = main.c
|
SRC = main.c
|
||||||
OBJ = $(SRC:.c=.o)
|
OBJ = $(SRC:.c=.o)
|
||||||
|
@ -6,7 +6,7 @@ CC = clang
|
|||||||
DCC = gcc
|
DCC = gcc
|
||||||
|
|
||||||
# Flags
|
# Flags
|
||||||
CFLAGS = -std=c99 -pedantic -O2
|
CFLAGS += -std=c99 -pedantic -O2
|
||||||
|
|
||||||
SRC = main.c
|
SRC = main.c
|
||||||
OBJ = $(SRC:.c=.o)
|
OBJ = $(SRC:.c=.o)
|
||||||
|
@ -6,7 +6,7 @@ CC = clang
|
|||||||
DCC = gcc
|
DCC = gcc
|
||||||
|
|
||||||
# Flags
|
# Flags
|
||||||
CFLAGS = -std=c99 -pedantic -O2
|
CFLAGS += -std=c99 -pedantic -O2
|
||||||
|
|
||||||
SRC = main.c
|
SRC = main.c
|
||||||
OBJ = $(SRC:.c=.o)
|
OBJ = $(SRC:.c=.o)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
BIN = zahnrad
|
BIN = zahnrad
|
||||||
|
|
||||||
# Flags
|
# Flags
|
||||||
CFLAGS = -std=c89 -pedantic -O2 -Wunused -DRAWFB_XRGB_8888
|
CFLAGS += -std=c89 -pedantic -O2 -Wunused -DRAWFB_XRGB_8888
|
||||||
|
|
||||||
SRC = main.c
|
SRC = main.c
|
||||||
OBJ = $(SRC:.c=.o)
|
OBJ = $(SRC:.c=.o)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# Flags
|
# Flags
|
||||||
CFLAGS = -std=c99 -pedantic -O2
|
CFLAGS += -std=c99 -pedantic -O2
|
||||||
LIBS :=
|
LIBS :=
|
||||||
|
|
||||||
ifeq ($(OS),Windows_NT)
|
ifeq ($(OS),Windows_NT)
|
||||||
|
Loading…
Reference in New Issue
Block a user