From e0671aba949e9f0b97e96cd0605b1e02f7bdebf9 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Wed, 13 Nov 2002 11:25:10 -0500 Subject: [PATCH] BUG: fix order of link line for creating shared libraries --- Modules/Platform/Windows-bcc32.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/Platform/Windows-bcc32.cmake b/Modules/Platform/Windows-bcc32.cmake index f45c0aa2e5..97d8ea64dd 100644 --- a/Modules/Platform/Windows-bcc32.cmake +++ b/Modules/Platform/Windows-bcc32.cmake @@ -3,7 +3,7 @@ SET(CMAKE_LINK_LIBRARY_FLAG "") # create a shared C++ library SET(CMAKE_CXX_CREATE_SHARED_LIBRARY - " @&&|\n-e -tWD \n|" + " @&&|\n-e -tWD \n|" "implib @&&|\n-w .lib .dll\n|" ) @@ -11,7 +11,7 @@ SET(CMAKE_CXX_CREATE_SHARED_MODULE ${CMAKE_CXX_CREATE_SHARED_LIBRARY}) # create a C shared library SET(CMAKE_C_CREATE_SHARED_LIBRARY - " @&&|\n-e -tWD \n|" + " @&&|\n-e -tWD \n|" "implib @&&|\n-w .lib .dll\n|" )