On Saturday, 11 May 2019 at 16:12:34 UTC, Robert M. Münch wrote:
I somehow managed to get debug symbols into my dub project in
the past.
Now I'm trying to extend my dub configuration to use different
libs for debug and release versions.
"buildTypes" : {
"debug" : {
"libs-windows-x86_64" : ["user32", "gdi32",
"mylib1_d_x64", "mylib2_d_x64"],
},
"release" : {
"libs-windows-x86_64" : ["user32", "gdi32",
"mylib1_x64", "mylib2_x64"],
}
},
And now, the debug build doesn't contain any symbols anymore...
what am I missing?
Not really familiar with this, but at a guess...
Have you tried it without the 32-bit references?