-
Everything works fine, great tool! However each time I switch the build type, e.g. from Debug to Release, all dependencies get recompiled, too. Is it possible to have all dependencies being build with Release type (i.e. only compiled once for the first build after downloading), even when the rest of my project is build with Debug type? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
A similar answer was posted here, however the accepted solution being a bit disappointing imho. Instead I'm now using two separate build directories for Debug and Release, effectively giving the result I want. VSCode makes it quiet simple, just add e.g. |
Beta Was this translation helpful? Give feedback.
A similar answer was posted here, however the accepted solution being a bit disappointing imho. Instead I'm now using two separate build directories for Debug and Release, effectively giving the result I want. VSCode makes it quiet simple, just add e.g.
"cmake.buildDirectory": "${workspaceFolder}/build/${buildType}"
to your settings.