forked from rprichard/winpty
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathwinpty.gyp
56 lines (56 loc) · 1.48 KB
/
winpty.gyp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
'targets' : [
{
'target_name' : 'winpty-agent',
'type' : 'executable',
'include_dirs' : [
'include',
],
'libraries' : [
'user32.lib'
],
'defines' : [
'UNICODE',
'_UNICODE',
'_WIN32_WINNT=0x0501',
'NOMINMAX',
],
'msvs_disabled_warnings': [ 4267, 4244, 4530, 4267, 4800 ],
'sources' : [
'agent/Agent.cc',
'agent/AgentAssert.cc',
'agent/ConsoleInput.cc',
'agent/Coord.cc',
'agent/EventLoop.cc',
'agent/NamedPipe.cc',
'agent/SmallRect.cc',
'agent/Terminal.cc',
'agent/Win32Console.cc',
'agent/main.cc',
'shared/DebugClient.cc',
],
},
{
'target_name' : 'winpty',
'type' : 'shared_library',
'include_dirs' : [
'include',
],
'libraries' : [
'user32.lib'
],
'defines' : [
'UNICODE',
'_UNICODE',
'_WIN32_WINNT=0x0501',
'NOMINMAX',
'WINPTY',
],
'msvs_disabled_warnings': [ 4267, 4800 ],
'sources' : [
'libwinpty/winpty.cc',
'shared/DebugClient.cc',
],
},
],
}