We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8e3723 commit 29d11e2Copy full SHA for 29d11e2
1 file changed
blog/26-04-16/node-gyp-always-on-top/ex/binding.gyp
@@ -1,23 +1,20 @@
1
+{
2
+ "targets" : [
3
+ {
4
+
5
+ "target_name" : "always-on-top",
6
+ "sources" : ["always-on-top.cpp"],
7
8
+ "include_dirs" : ["node_modules/node-addon-api"],
9
10
+ "dependencies" : ["<!(node -p \"require('node-addon-api').gyp\")"],
11
12
+ "defines" : ["NODE_ADDON_API_CPP_EXCEPTIONS"],
13
+ "cflags_cc" : ["-std=c++17"]
14
15
+ }
16
+ ]
17
+}
18
19
-
- {
- "targets" : [
- "target_name" : "always-on-top",
- "sources" : ["always-on-top.cpp"],
- "include_dirs" : ["node_modules/node-addon-api"],
- "dependencies" : ["<!(node -p \"require('node-addon-api').gyp\")"],
- "defines" : ["NODE_ADDON_API_CPP_EXCEPTIONS"],
- "cflags_cc" : ["-std=c++17"]
- }
- ]
20
21
22
23
0 commit comments