Skip to content

Commit

Permalink
CI: Fix exodus lib symlink installs
Browse files Browse the repository at this point in the history
  • Loading branch information
gdsjaar committed Dec 9, 2024
1 parent a6e55da commit 7e120f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/seacas/libraries/exodus/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ if (SEACASExodus_ENABLE_STATIC)

# For backwards compatibility, the C exodus library was called libexoIIv2c.a
# Create a symbolic link from libexodus.a to libexoIIv2c.a -- do only for static lib
InstallSymLink(libexodus.a ${CMAKE_INSTALL_LIBDIR}/libexoIIv2c.a)
InstallSymLink(libexodus.a ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/libexoIIv2c.a)
endif()

if (${CMAKE_PROJECT_NAME} STREQUAL "Seacas")
Expand Down
2 changes: 1 addition & 1 deletion packages/seacas/libraries/exodus_for/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ if (SEACASExodus_ENABLE_STATIC)

# For backwards compatibility, the Fortran exodus library was called libexoIIv2for.a
# Create a symbolic link from libexodus_for.a to libexoIIv2for.a -- do only for static lib
InstallSymLink(libexodus_for.a ${CMAKE_INSTALL_LIBDIR}/libexoIIv2for.a)
InstallSymLink(libexodus_for.a ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/libexoIIv2for.a)
endif()

TRIBITS_ADD_TEST_DIRECTORIES(test)
Expand Down

0 comments on commit 7e120f2

Please sign in to comment.