Skip to content

Commit

Permalink
Merge PR #6192: BUILD(cmake, overlay): Install 32-bit lib on FreeBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzmbrzl authored Oct 26, 2023
2 parents 8e9276b + 589bfbf commit 5d89561
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions overlay_gl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,11 @@ if(NOT APPLE)
"-ldl"
"-lrt"
)
endif()
endif()

if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux" OR ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
if(TARGET overlay_gl_x86)
# install 32bit overlay library
install(TARGETS overlay_gl_x86 LIBRARY DESTINATION "${MUMBLE_INSTALL_LIBDIR}")
endif()
Expand Down

0 comments on commit 5d89561

Please sign in to comment.