From 46a354cef9aef40059ef77d42ab59bf3be5c4a62 Mon Sep 17 00:00:00 2001 From: Greg Sjaardema Date: Tue, 16 Apr 2024 14:45:07 -0600 Subject: [PATCH] CI: Change install name/location --- packages/seacas/libraries/exodus/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/seacas/libraries/exodus/CMakeLists.txt b/packages/seacas/libraries/exodus/CMakeLists.txt index ad56f2903d..81ea023c27 100644 --- a/packages/seacas/libraries/exodus/CMakeLists.txt +++ b/packages/seacas/libraries/exodus/CMakeLists.txt @@ -48,7 +48,7 @@ if (SEACASExodus_ENABLE_SHARED) set_property(TARGET exodus_shared PROPERTY C_STANDARD 99) # This keeps the library out of the `all_libs` targets... set_target_properties(exodus_shared PROPERTIES TRIBITS_TESTONLY_LIB TRUE) - set_target_properties(exodus_shared PROPERTIES RUNTIME_OUTPUT_NAME exodus) + set_target_properties(exodus_shared PROPERTIES OUTPUT_NAME exodus) INSTALL(TARGETS exodus_shared DESTINATION ${CMAKE_INSTALL_PREFIX}/lib) endif() endif()