1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 18:19:55 +00:00

Fix recastnavigation debug library suffixes

This commit is contained in:
elsid 2021-03-04 18:12:08 +01:00
parent 741584472e
commit b47573f36b
No known key found for this signature in database
GPG key ID: B845CB9FEE18AB40

View file

@ -66,7 +66,7 @@ NOTE: The variables above should not usually be used in CMakeLists.txt files!
if(NOT RECAST_LIBRARY) if(NOT RECAST_LIBRARY)
find_library(RECAST_LIBRARY_RELEASE NAMES Recast) find_library(RECAST_LIBRARY_RELEASE NAMES Recast)
find_library(RECAST_LIBRARY_DEBUG NAMES Recastd) find_library(RECAST_LIBRARY_DEBUG NAMES Recast-d)
include(SelectLibraryConfigurations) include(SelectLibraryConfigurations)
select_library_configurations(RECAST) select_library_configurations(RECAST)
mark_as_advanced(RECAST_LIBRARY_RELEASE RECAST_LIBRARY_DEBUG) mark_as_advanced(RECAST_LIBRARY_RELEASE RECAST_LIBRARY_DEBUG)
@ -76,7 +76,7 @@ endif()
if(NOT DETOUR_LIBRARY) if(NOT DETOUR_LIBRARY)
find_library(DETOUR_LIBRARY_RELEASE NAMES Detour) find_library(DETOUR_LIBRARY_RELEASE NAMES Detour)
find_library(DETOUR_LIBRARY_DEBUG NAMES Detourd) find_library(DETOUR_LIBRARY_DEBUG NAMES Detour-d)
include(SelectLibraryConfigurations) include(SelectLibraryConfigurations)
select_library_configurations(DETOUR) select_library_configurations(DETOUR)
mark_as_advanced(DETOUR_LIBRARY_RELEASE DETOUR_LIBRARY_DEBUG) mark_as_advanced(DETOUR_LIBRARY_RELEASE DETOUR_LIBRARY_DEBUG)
@ -86,7 +86,7 @@ endif()
if(NOT DEBUGUTILS_LIBRARY) if(NOT DEBUGUTILS_LIBRARY)
find_library(DEBUGUTILS_LIBRARY_RELEASE NAMES DebugUtils) find_library(DEBUGUTILS_LIBRARY_RELEASE NAMES DebugUtils)
find_library(DEBUGUTILS_LIBRARY_DEBUG NAMES DebugUtilsd) find_library(DEBUGUTILS_LIBRARY_DEBUG NAMES DebugUtils-d)
include(SelectLibraryConfigurations) include(SelectLibraryConfigurations)
select_library_configurations(DEBUGUTILS) select_library_configurations(DEBUGUTILS)
mark_as_advanced(DEBUGUTILS_LIBRARY_RELEASE DEBUGUTILS_LIBRARY_DEBUG) mark_as_advanced(DEBUGUTILS_LIBRARY_RELEASE DEBUGUTILS_LIBRARY_DEBUG)