diff --git a/Source/CMake/HelperMethods.cmake b/Source/CMake/HelperMethods.cmake index 9577b6c8e..90ec58df6 100644 --- a/Source/CMake/HelperMethods.cmake +++ b/Source/CMake/HelperMethods.cmake @@ -353,8 +353,6 @@ function(strip_symbols targetName outputFilename) endfunction() function(install_bsf_target targetName) - strip_symbols(${targetName} symbolsFile) - install( TARGETS ${targetName} EXPORT bsf @@ -362,19 +360,6 @@ function(install_bsf_target targetName) LIBRARY DESTINATION lib ARCHIVE DESTINATION lib ) - - if(MSVC) - install( - FILES $ - DESTINATION bin - OPTIONAL - ) - else() - install( - FILES ${symbolsFile} - DESTINATION lib - OPTIONAL) - endif() endfunction() function(copyBsfBinaries target srcDir)