mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 19:22:16 +02:00
Fix OpenEXR on Windows
Prevents: LNK2001 unresolved external symbol imath_half_to_float_table
This commit is contained in:
parent
49c3aea199
commit
5358a888e3
1 changed files with 6 additions and 0 deletions
|
@ -79,5 +79,11 @@ macro(TARGET_OPENEXR)
|
|||
select_library_configurations(OPENEXR)
|
||||
target_link_libraries(${TARGET_NAME} ${OPENEXR_LIBRARY})
|
||||
target_include_directories(${TARGET_NAME} PUBLIC "${VCPKG_INSTALL_ROOT}/include/Imath")
|
||||
|
||||
# This prevents:
|
||||
# LNK2001 unresolved external symbol imath_half_to_float_table
|
||||
#
|
||||
# Apparently something changed in newer versions.
|
||||
target_compile_definitions(${TARGET_NAME} PUBLIC IMATH_HALF_NO_LOOKUP_TABLE)
|
||||
endif()
|
||||
endmacro()
|
||||
|
|
Loading…
Reference in a new issue