Do not define _DEBUG.
The vc++ compiler would define some internal contants if we define _DEBUG, since we are linking to the release build of chromiumcontent, this would result in linking errors.
This commit is contained in:
parent
30b3657c0e
commit
a5ec8a9110
1 changed files with 1 additions and 1 deletions
2
atom.gyp
2
atom.gyp
|
@ -232,7 +232,7 @@
|
||||||
],
|
],
|
||||||
'configurations': {
|
'configurations': {
|
||||||
'Debug': {
|
'Debug': {
|
||||||
'defines': [ 'DEBUG', '_DEBUG' ],
|
'defines': [ 'DEBUG' ],
|
||||||
'cflags': [ '-g', '-O0' ],
|
'cflags': [ '-g', '-O0' ],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue