diff Makefile @ 65:80a913d25aa9

core: implement script, closes #2465 @2h
author David Demelier <markand@malikania.fr>
date Mon, 27 Jan 2020 12:24:20 +0100
parents 52792b863ff7
children 9435a53adab4
line wrap: on
line diff
--- a/Makefile	Thu Jan 23 20:44:01 2020 +0100
+++ b/Makefile	Mon Jan 27 12:24:20 2020 +0100
@@ -36,6 +36,7 @@
                 src/core/map_state.c \
                 src/core/message.c \
                 src/core/painter.c \
+                src/core/script.c \
                 src/core/sprite.c \
                 src/core/sys.c \
                 src/core/texture.c \
@@ -62,7 +63,8 @@
 
 TESTS=          tests/test-color.c \
                 tests/test-error.c \
-                tests/test-map.c
+                tests/test-map.c \
+                tests/test-script.c
 TESTS_INCS=     -I extern/libgreatest -I src/core ${SDL_CFLAGS}
 TESTS_LIBS=     ${LIB} ${SDL_LDFLAGS} ${LDFLAGS}
 TESTS_OBJS=     ${TESTS:.c=}