summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2026-07-18 13:34:49 -0400
committerAndrew Opalach <andrew@akon.city> 2026-07-18 13:45:01 -0400
commit72f5ec3ce777fc05150856f1841e60b0f5c9f8f7 (patch)
tree9b26fd3b314bcf3a2259704c076d819212f172f0 /meson.build
parente6b1631d27f9fe54f3cdd3d7ee1e65d726927e3c (diff)
downloadcetris-72f5ec3ce777fc05150856f1841e60b0f5c9f8f7.tar.gz
cetris-72f5ec3ce777fc05150856f1841e60b0f5c9f8f7.tar.bz2
cetris-72f5ec3ce777fc05150856f1841e60b0f5c9f8f7.zip
restore old frontends as they were
Minimal changes, just enough to get them building and running. Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'meson.build')
-rwxr-xr-xmeson.build5
1 files changed, 5 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 1c62504..e2eb068 100755
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,11 @@
project('cetris', 'c', version : '0.3',
default_options : ['warning_level=2', 'c_std=c99'])
+compiler = meson.get_compiler('c')
+
cetris_inc = include_directories(['lib'])
subdir('test')
+
+subdir('frontends/curses')
+subdir('frontends/sdl')