From 690255d29e91b40d3fc5ebf10dd79f0c6aad45b6 Mon Sep 17 00:00:00 2001 From: Justin Scofield Date: Mon, 30 Dec 2024 08:15:45 -0500 Subject: [PATCH] Remove hardcoded mingw sdl2 lib linkage --- src/app/app.cmake | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/app/app.cmake b/src/app/app.cmake index a00f9c96..db1def10 100644 --- a/src/app/app.cmake +++ b/src/app/app.cmake @@ -63,11 +63,3 @@ if (APPLE) target_link_libraries(yaze PUBLIC ${COCOA_LIBRARY}) endif() -if (WIN32 OR MINGW) - target_link_libraries( - yaze PUBLIC - ${CMAKE_SOURCE_DIR}/build/build-windows/bin/libpng16.dll - zlib - mingw32 - ws2_32) -endif()