From 1b55c8fcf2e9e509fbef031f3fed6df3c0e02756 Mon Sep 17 00:00:00 2001 From: Cristian Le Date: Thu, 15 May 2025 17:58:34 +0200 Subject: [PATCH] Remove `LIB_SUFFIX` reference --- cmake/Macros.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmake/Macros.cmake b/cmake/Macros.cmake index 8708c716..524be5e5 100644 --- a/cmake/Macros.cmake +++ b/cmake/Macros.cmake @@ -81,9 +81,9 @@ macro(csfml_add_library target) # add the install rule install(TARGETS ${target} - RUNTIME DESTINATION bin COMPONENT bin - LIBRARY DESTINATION lib${LIB_SUFFIX} COMPONENT bin - ARCHIVE DESTINATION lib${LIB_SUFFIX} COMPONENT devel) + RUNTIME COMPONENT bin + LIBRARY COMPONENT bin + ARCHIVE COMPONENT devel) # define CSFML_STATIC if the build type is not set to 'shared' if(NOT BUILD_SHARED_LIBS)