You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to build your depthai-core library with the /MT flag - which links the C++ runtime statically?
I tried that and it looks there are some issues with dependencies: XLink, spdlog XLink.lib(ProtocolManager.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MT_StaticRelease' in DatatypeEnum.obj spdlog.lib(fmt.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MT_StaticRelease' in DatatypeEnum.obj
How can I configure Hunter to build the dependencies with /MT as well?
Or am I missing something else?
The text was updated successfully, but these errors were encountered:
I'm on windows, using MSVC (Visual Studio 2022).
Is it possible to build your depthai-core library with the
/MT
flag - which links the C++ runtime statically?I tried that and it looks there are some issues with dependencies: XLink, spdlog
XLink.lib(ProtocolManager.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MT_StaticRelease' in DatatypeEnum.obj
spdlog.lib(fmt.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MT_StaticRelease' in DatatypeEnum.obj
How can I configure Hunter to build the dependencies with
/MT
as well?Or am I missing something else?
The text was updated successfully, but these errors were encountered: