From f5eea7efa2d87bf2310bc59e8894a16b3d5d9abc Mon Sep 17 00:00:00 2001 From: Jan200101 Date: Mon, 17 Mar 2025 10:38:13 +0100 Subject: [PATCH] remove status message for SDL_STATIC_PIC PIC is controlled through CMAKE_POSITION_INDEPENDENT_CODE and not by an SDL option --- cmake/macros.cmake | 3 --- 1 file changed, 3 deletions(-) diff --git a/cmake/macros.cmake b/cmake/macros.cmake index 3885abaea2..3ee413c52f 100644 --- a/cmake/macros.cmake +++ b/cmake/macros.cmake @@ -362,9 +362,6 @@ function(SDL_PrintSummary) message(STATUS "") message(STATUS " Build Shared Library: ${SDL_SHARED}") message(STATUS " Build Static Library: ${SDL_STATIC}") - if(SDL_STATIC) - message(STATUS " Build Static Library with Position Independent Code: ${SDL_STATIC_PIC}") - endif() if(APPLE) message(STATUS " Build libraries as Apple Framework: ${SDL_FRAMEWORK}") endif()