File tree 1 file changed +3
-16
lines changed
1 file changed +3
-16
lines changed Original file line number Diff line number Diff line change 6
6
'src/binding.cc'
7
7
],
8
8
'conditions' : [
9
- ['OS=="mac"' , {
10
- 'include_dirs' : ['<!@(pg_config --includedir)' ],
11
- 'libraries' : ['-lpq -L<!@(pg_config --libdir)' ]
12
- }],
13
- ['OS=="linux"' , {
14
- 'include_dirs' : ['<!@(pg_config --includedir)' ],
15
- 'libraries' : ['-lpq -L<!@(pg_config --libdir)' ]
16
- }],
17
- ['OS=="solaris"' , {
18
- 'include_dirs' : ['<!@(pg_config --includedir)' ],
19
- 'libraries' : ['-lpq -L<!@(pg_config --libdir)' ]
20
- }],
21
- ['OS=="freebsd"' , {
22
- 'include_dirs' : ['<!@(pg_config --includedir)' ],
23
- 'libraries' : ['-lpq -L<!@(pg_config --libdir)' ]
24
- }],
25
9
['OS=="win"' , {
26
10
'include_dirs' : ['<!@(pg_config --includedir)' ],
27
11
'libraries' : ['libpq.lib' ],
32
16
]
33
17
},
34
18
}
19
+ }, { # OS!="win"
20
+ 'include_dirs' : ['<!@(pg_config --includedir)' ],
21
+ 'libraries' : ['-lpq -L<!@(pg_config --libdir)' ]
35
22
}]
36
23
]
37
24
}
You can’t perform that action at this time.
0 commit comments