1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-13 15:18:14 +00:00

Try to make builds pass again.

This commit is contained in:
Peter 2021-10-21 18:51:41 +02:00 committed by Nick Briggs
parent 5e28babfa5
commit 40b24ec655
2 changed files with 4 additions and 4 deletions

View File

@ -100,7 +100,7 @@ IF(MAIKO_DISPLAY_SDL)
SET(MAIKO_DISPLAY_SDL_DEFINITIONS
"-DSDL"
)
SET(MAIKO_DISPLAY_SDL_LIBRARIES SDL2::SDL2)
SET(MAIKO_DISPLAY_SDL_LIBRARIES SDL2)
SET(MAIKO_DISPLAY_SDL_SRCS
src/sdl.c
)
@ -432,7 +432,7 @@ IF(MAIKO_DISPLAY_SDL)
# Tell it that the SDL launcher is available.
TARGET_COMPILE_DEFINITIONS(lde PUBLIC ${MAIKO_DISPLAY_SDL_DEFINITIONS})
# This is needed so that it can call XOpenDisplay.
TARGET_LINK_LIBRARIES(lde SDL2::SDL2)
TARGET_LINK_LIBRARIES(lde SDL2)
ENDIF()
ADD_EXECUTABLE(ldeether src/ldeether.c src/dlpi.c)

View File

@ -1,5 +1,5 @@
#include <SDL.h>
#include <SDL_keycode.h>
#include <SDL2/SDL.h>
#include <SDL2/SDL_keycode.h>
#include "lispemul.h"
#include "miscstat.h"
#include "keyboard.h"