From b53e7766b45e744e91b9b2ff56cda094431cae26 Mon Sep 17 00:00:00 2001 From: Robert Vinluan Date: Tue, 19 Apr 2022 10:51:29 -0400 Subject: [PATCH] Use custom "_sidefx" library suffix instead of the versioned suffix. --- cmake/OpenEXRSetup.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/OpenEXRSetup.cmake b/cmake/OpenEXRSetup.cmake index ef5c6c0853..2a0433f965 100644 --- a/cmake/OpenEXRSetup.cmake +++ b/cmake/OpenEXRSetup.cmake @@ -75,7 +75,7 @@ endif() # Suffix to append to root name, this helps with version management # but can be turned off if you don't care, or otherwise customized -set(OPENEXR_LIB_SUFFIX "-${OPENEXR_VERSION_API}" CACHE STRING "string added to the end of all the libraries") +set(OPENEXR_LIB_SUFFIX "_sidefx" CACHE STRING "string added to the end of all the libraries") # when building both dynamic and static, the additional string to # add to the library name, such that to get static linkage, you # would use -lOpenEXR_static (or target_link_libraries(xxx OpenEXR::OpenEXR_static))