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 ---