Updated VSLinux solution, added xu4 target, updated guisan Makefile so it can compile on its own

This commit is contained in:
Dimitris Panokostas 2018-04-20 18:42:50 +02:00
parent 1fcad51c59
commit 6df690a9be
7 changed files with 181 additions and 7 deletions

View file

@ -6,7 +6,7 @@ DIRS =$(shell find ./src -maxdepth 3 -type d)
SOURCE = $(foreach dir,$(DIRS),$(wildcard $(dir)/*.cpp))
OBJS = $(patsubst %.c,%.o,$(patsubst %.cpp,%.o,$(SOURCE)))
CPPFLAGS +=-I./include
CPPFLAGS +=-I./include -std=gnu++14 `sdl2-config --cflags --libs`
.PHONY : all clean