We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1275ab commit 42b596bCopy full SHA for 42b596b
binding.gyp
@@ -0,0 +1,39 @@
1
+{
2
+ "targets": [
3
+ {
4
+ "target_name": "mysql_bindings",
5
+ 'include_dirs': [
6
+ 'lib/',
7
+ '.',
8
+ '<!@(mysql_config --include)'
9
+ ],
10
+ 'cflags': [
11
+ '<!@(mysql_config --cflags)'
12
13
+ 'cflags!': [
14
+ '-fno-exceptions'
15
16
+ 'cflags_cc!': [
17
18
19
+ "sources": [
20
+ "lib/node-db/exception.cc",
21
+ "lib/node-db/binding.cc",
22
+ "lib/node-db/connection.cc",
23
+ "lib/node-db/events.cc",
24
+ "lib/node-db/query.cc",
25
+ "lib/node-db/result.cc",
26
+ "src/connection.cc",
27
+ "src/mysql.cc",
28
+ "src/query.cc",
29
+ "src/result.cc",
30
+ "src/mysql_bindings.cc"
31
32
+ 'link_settings': {
33
+ 'libraries': [
34
+ '<!@(mysql_config --libs_r)'
35
+ ]
36
+ }
37
38
39
+}
0 commit comments