Is there a way to automatically determine the "d" suffix on Windows debug builds for *some* packages? #2138
Answered
by
nickclark2016
GasimGasimzada
asked this question in
Q&A
-
I am trying to migrate to using vcpkg to install dependencies for my project and then link them using premake. I have came across a problem, for debug builds, some packages add links { "imgui" } And premake automatically checks both filter { "system:windows", "configurations:Debug" }
links { "imgui" }
filter { "system:windows", "configurations:Release" }
links { "imguid" } |
Beta Was this translation helpful? Give feedback.
Answered by
nickclark2016
Sep 10, 2023
Replies: 1 comment 3 replies
-
To my awareness, this is the only way to do it. That said, you could write a lua function to handle it for you. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
GasimGasimzada
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To my awareness, this is the only way to do it. That said, you could write a lua function to handle it for you.