From 6ebc812cda75a89b327549117975be130a6c7b41 Mon Sep 17 00:00:00 2001 From: Jason Rhinelander Date: Fri, 27 Oct 2023 11:34:18 -0300 Subject: [PATCH] Remove unused file --- cmake/static_link.cmake | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 cmake/static_link.cmake diff --git a/cmake/static_link.cmake b/cmake/static_link.cmake deleted file mode 100644 index 6dc602c25..000000000 --- a/cmake/static_link.cmake +++ /dev/null @@ -1,7 +0,0 @@ -if(STATIC_LINK) - if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang") - link_libraries( -static-libstdc++ ) - else() - link_libraries( -static-libstdc++ -static-libgcc ) - endif() -endif()