Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp18
1 files changed, 18 insertions, 0 deletions
diff --git a/node.gyp b/node.gyp
index 865a7de9317..5ad94432476 100644
--- a/node.gyp
+++ b/node.gyp
@@ -1469,6 +1469,24 @@
],
}, # embedtest
+ {
+ 'target_name': 'overlapped-checker',
+ 'type': 'executable',
+
+ 'conditions': [
+ ['OS=="win"', {
+ 'sources': [
+ 'test/overlapped-checker/main_win.c'
+ ],
+ }],
+ ['OS!="win"', {
+ 'sources': [
+ 'test/overlapped-checker/main_unix.c'
+ ],
+ }],
+ ]
+ }, # overlapped-checker
+
# TODO(joyeecheung): do not depend on node_lib,
# instead create a smaller static library node_lib_base that does
# just enough for node_native_module.cc and the cache builder to