From: julie Date: Fri, 6 Dec 2013 23:13:50 +0000 (+0000) Subject: Remove unused leftover GNUtoMS support file X-Git-Tag: submit/tizen/20180313.231549~435 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=014dcec815656e063278bbdf556cc11e77763082;p=platform%2Fupstream%2Flapack.git Remove unused leftover GNUtoMS support file --- diff --git a/CMAKE/lapack-GNUtoMS.cmake b/CMAKE/lapack-GNUtoMS.cmake deleted file mode 100644 index cdbd2a01..00000000 --- a/CMAKE/lapack-GNUtoMS.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# Skip conversion for non-GNU tools. -if(MINGW OR MSYS OR CYGWIN) - return() -endif() - -# Replace each imported target's import library. -foreach(lib ${ALL_TARGETS}) - # Replace for all imported build configurations. - get_property(configs TARGET ${lib} PROPERTY IMPORTED_CONFIGURATIONS) - foreach(config ${configs}) - get_property(implib TARGET ${lib} PROPERTY IMPORTED_IMPLIB_${config}) - # Switch to the MS-compatible import library. - string(REGEX REPLACE "\\.dll\\.a$" ".lib" implib "${implib}") - set_property(TARGET ${lib} PROPERTY IMPORTED_IMPLIB_${config} ${implib}) - endforeach() -endforeach()