Replies: 1 comment
-
I did manage to get this working with some insane AI generated cmake function, but if there's an official way that would be great |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In addition to Debug and Release, I've added two different configurations to my project with
set(CMAKE_CONFIGURATION_TYPES "Debug;Release;ASAN;TSAN" CACHE STRING "Available build configurations" FORCE)
where the ASAN and TSAN libraries are built in release.
Based on the configuration type, I'm picking a custom triplet. This is all in manifest mode and working so far - I get vcpkg libraries built with my A/TSAN flags. However, when I go to link my application, its linking against the vcpkg debug libraries. Is there a way for me to tell vcpkg to link in the release libraries?
Beta Was this translation helpful? Give feedback.
All reactions