Fixed a missing lib in the tests

This commit is contained in:
2022-10-26 05:52:31 +01:00
parent 893430469b
commit 94f0118cb1
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ CC=gcc
IDIR+=. ../Toy/source ../core
CFLAGS+=$(addprefix -I,$(IDIR)) -g -Wall -W -Wno-unused-parameter -Wno-unused-function -Wno-unused-variable
LIBS+=-lSDL2 -ltoy -lcore
LIBS+=-lSDL2 -lSDL2_image -ltoy -lcore
ODIR = obj
TARGETS = $(wildcard ../core/*.c)