From 729ea9c0f2d6a9caa27f17c05e0c26560a8f07e1 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Fri, 13 Jan 2023 20:13:37 -0800 Subject: libs/rocket: add GNU Rocket submodule Preparatory commit for experimenting with a GNU Rocket integration for controlling the stream pipes on a timeline. Since rocket doesn't support things like arbitrary strings, it's not a natural fit for rototiller where the obvious thing would be to describe scene compositions as settings strings as if you were invoking rototiller. But a temporary hack might be to just tell a rocket module up-front all the scenes as settings strings you provide to its setup. Those get assigned numeric identifiers, then rocket tracks can control when they come on/off numerically. It just requires describing all the scenes up front rather than in the pattern editor which is less than ideal. Being able to experiment with this half-ass solution may prove useful anyways, and shouldn't be too much work. --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 1c56d34..c796695 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_INIT([rototiller], [1.0], [vcaputo@pengaru.com]) -AM_INIT_AUTOMAKE([-Wall -Werror foreign]) +AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) AC_CONFIG_MACRO_DIRS([m4]) AC_PROG_CC AM_PROG_CC_C_O @@ -36,6 +36,7 @@ AC_CONFIG_FILES([ src/libs/ascii/Makefile src/libs/grid/Makefile src/libs/din/Makefile + src/libs/rocket/Makefile src/libs/puddle/Makefile src/libs/ray/Makefile src/libs/sig/Makefile -- cgit v1.2.1