From 5756e38b074baa3d044dfac4a8ff309138122d58 Mon Sep 17 00:00:00 2001 From: Subhasis Ray Date: Wed, 12 Jun 2024 16:56:03 +0530 Subject: [PATCH] Fixed lib name for moose used in linking moose.bin --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ec671125e3..221b96b5bf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -354,7 +354,7 @@ else(APPLE) endif(APPLE) add_dependencies(moose.bin libmoose) -target_link_libraries(moose.bin moose ${CMAKE_DL_LIBS}) +target_link_libraries(moose.bin _moose ${CMAKE_DL_LIBS}) if( WITH_BOOST ) target_link_libraries( moose.bin ${Boost_LIBRARIES} )