From 5c723034092e731ca0d487cfd365e44ca9161778 Mon Sep 17 00:00:00 2001 From: jonny_jr9 Date: Sun, 17 Dec 2023 14:21:39 +0100 Subject: [PATCH] Fix segfault on linux (use SDL2_ttf) Loading font caused a segmentation fault beceause of using SDL_ttf with SDL2 on linux (not compatible) Note: This section might have helped too but was not necessary at the end: --- Locate SDL2_ttf --- find_package(SDL2_ttf REQUIRED) if(SDL2_ttf_FOUND) add_definitions(-DUSE_SDL2_TTF) set(nativeExtraLibs ${nativeExtraLibs} SDL2_ttf::SDL2_ttf) #message(STATUS "DEBUG: ttf-library found!") endif() --- CMakeLists.txt | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bb16117..9f9cc51 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,11 +32,7 @@ endif() find_package(SDL2 REQUIRED) # --- Locate SDL2_ttf --- -if(WIN32) find_package(SDL2_ttf REQUIRED) -else() -find_package(SDL_ttf REQUIRED) -endif() #--- Include directories --- include_directories(${SDL2_INCLUDE_DIRS} ${SDL2_TTF_INCLUDE_DIRS} ./include ./src) @@ -61,7 +57,14 @@ set(SOURCES add_executable(Snake ${SOURCES}) -target_link_libraries(Snake ${SDL2_LIBRARIES} ${SDL_TTF_LIBRARIES}) + + +#--- link libraries --- +if(WIN32) + target_link_libraries(Snake ${SDL2_LIBRARIES} ${SDL_TTF_LIBRARIES}) +else() + target_link_libraries(Snake SDL2::SDL2 SDL2_ttf::SDL2_ttf) +endif() # --- Copy SDL2 DLLs to the output folder on Windows ---