Skip to content

Commit

Permalink
Windows: only add debug symbols on Debug build type
Browse files Browse the repository at this point in the history
  • Loading branch information
jmillan committed May 17, 2024
1 parent 8a5ffe7 commit 7642644
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion node/workerChannel/binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,13 @@
}
],
['OS=="win"', {
'conditions': [
['mediasoup_build_type=="Debug"', {
'libraries': ['Dbghelp.lib'],
}],
],
'libraries': [
'Ws2_32.lib', 'Dbghelp.lib', 'Crypt32.lib', 'Userenv.lib',
'Ws2_32.lib', 'Crypt32.lib', 'Userenv.lib',
],
'msvs_settings': {
'VCCLCompilerTool': {
Expand Down

0 comments on commit 7642644

Please sign in to comment.