-
-
Notifications
You must be signed in to change notification settings - Fork 235
Closed
Description
At the present time, the build files either build Lem with SDL2 support (make sdl2) or ncurses support (make ncurses), with no option for building Lem with both.
I tried making my own scripts/build-sdl2-ncurses.lisp as
(ql:quickload :lem-sdl2)
(ql:quickload :lem-ncurses)
(lem:init-at-build-time)
(sb-ext:save-lisp-and-die "lem"
:toplevel #'lem:main
:executable t)and added a new make rule to the Makefile
sdl2-ncurses:
qlot install
$(LISP) --noinform --no-sysinit --no-userinit --load .qlot/setup.lisp --load scripts/build-sdl2-ncurses.lispDoing make sdl2-ncurses builds, but when I run it I only get the terminal interface.
Is there some undocumented command line switch to control which interface to use?
If not, I suggest adding a command line switch and some sensible default, just like GNU Emacs' -nw argument and defaulting to GUI (could of course make different choices than they did).
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels