Skip to content

Commit

Permalink
Revert "Windows: only add debug symbols on Debug build type"
Browse files Browse the repository at this point in the history
This reverts commit 7642644.

debug library is needed to create minidump files when the process
crashes.
  • Loading branch information
jmillan committed May 17, 2024
1 parent 5e3b4ad commit 8f46779
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions node/workerChannel/binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,8 @@
}
],
['OS=="win"', {
'conditions': [
['mediasoup_build_type=="Debug"', {
'libraries': ['Dbghelp.lib'],
}],
],
'libraries': [
'Ws2_32.lib', 'Crypt32.lib', 'Userenv.lib',
'Ws2_32.lib', 'Dbghelp.lib', 'Crypt32.lib', 'Userenv.lib',
],
'msvs_settings': {
'VCCLCompilerTool': {
Expand Down

0 comments on commit 8f46779

Please sign in to comment.