From 8d62c17715c869abd59df242e50e21dadd247efa Mon Sep 17 00:00:00 2001 From: Gryfenfer Date: Fri, 20 Jan 2023 22:10:37 +0100 Subject: [PATCH] fix sdl_ttf import in cmakelists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b6b0b06..9d2f859 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,6 +27,6 @@ set(SRC # add the executable add_executable(FLOPPE_FION ${SRC}) -target_link_libraries(FLOPPE_FION SDL2 SDL_image SDL_ttf pthread m) +target_link_libraries(FLOPPE_FION SDL2 SDL_image SDL2_ttf pthread m) set_property(TARGET FLOPPE_FION PROPERTY C_STANDARD 23)