-
Hi I'm facing an issue where jolt is failing to link to my project and I have tried everything I have made sure the runtime libraries match I have used the distribution config I have made sure i have put the correct folder in the "additional library directories" input. I just cannot wrap my head around as to why it is not working. here is the output: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Most likely you're mixing Debug/Release builds. |
Beta Was this translation helpful? Give feedback.
Most likely you're mixing Debug/Release builds.
AssertFailed
is gated behind theJPH_ENABLE_ASSERTS
define, so most likely Jolt is built in Release mode (NDEBUG
defined ->JPH_ENABLE_ASSERTS
undefined) and your own application in Debug mode (_DEBUG
defined ->JPH_ENABLE_ASSERTS
defined). Including a Jolt header which usesJPH_ASSERT
will cause this error.