Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BUILD(cmake, overlay): Install 32-bit lib on FreeBSD
Browse files Browse the repository at this point in the history
Despite the 32-bit library building on FreeBSD-amd64 when the
overlay-xcompile option is enabled, it never gets installed.

(cherry picked from commit 589bfbf)
BSDKaffee committed Oct 26, 2023

Verified

This commit was signed with the committer’s verified signature.
hakimifr Hakimi
1 parent c7b4a59 commit 3a2cef8
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
@@ -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()

0 comments on commit 3a2cef8

Please sign in to comment.