Skip to content

Commit 097ebea

Browse files
committed
windows compile working
1 parent 9536df5 commit 097ebea

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

binding.gyp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
'$(JAVA_HOME)/include/win32/jni_md.h'
3434
],
3535
'outputs': ['./build/depsVerified'],
36-
'action': [],
36+
'action': ['python', 'touch.py'],
3737
'message': 'Verify Deps'
3838
}
3939
],

touch.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import os;
2+
3+
f = open('depsVerified', 'w');
4+
f.write('ok');
5+
f.close();

0 commit comments

Comments
 (0)