You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: binding.gyp
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -66,20 +66,22 @@
66
66
"library_dirs": [
67
67
"<!@(pkg-config oopetris-recordings --libs-only-L | sed s/-L//g)",
68
68
],
69
-
"msvs_settings": { ## settinsg cflags_cc doesn't really work onw windows, so using this
69
+
"msvs_settings": { # setting cflags_cc doesn't really work onw windows, so using this
70
70
"VCCLCompilerTool": {
71
71
"AdditionalOptions": [
72
72
"/std:c++latest",
73
73
"/W4",
74
74
"/EHsc",
75
75
"/O2",
76
+
"/utf-8", # since fmt.h has some warnings without that
76
77
"/wd4100", # since nan.h -> node.h has some warnings regarding that
77
78
"<!@(pkg-config oopetris-recordings --cflags)",
78
79
]
79
80
},
80
81
"VCLinkerTool": {
81
82
"AdditionalDependencies": [
82
-
"<!@(pkg-config oopetris-recordings --libs-only-l | sed s/-l/lib/g |sed 's/\\s/.a /g')", # adjust to the default setting, namely lib<name>.a via some sed magic
83
+
# adjust to the default setting, namely lib<name>.a via some sed magic
84
+
"<!@(pkg-config oopetris-recordings --libs-only-l | sed s/-l/lib/g |sed 's/\\s/.a /g')",
0 commit comments