forked from zeromq/czmq
-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.gyp
121 lines (120 loc) · 3.14 KB
/
project.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
################################################################################
# THIS FILE IS 100% GENERATED BY ZPROJECT; DO NOT EDIT EXCEPT EXPERIMENTALLY #
# Please refer to the README for information about making permanent changes. #
################################################################################
# gyp --depth=.
{
'target_defaults': {
'default_configuration': 'Debug',
'configurations': {
'Debug': {
'defines': [ 'DEBUG', '_DEBUG' ],
'msvs_settings': {
'VCCLCompilerTool': {
'RuntimeLibrary': 1, # static debug
},
},
},
'Release': {
'defines': [ 'NDEBUG' ],
'msvs_settings': {
'VCCLCompilerTool': {
'RuntimeLibrary': 0, # static release
},
},
}
},
'msvs_settings': {
'VCLinkerTool': {
'GenerateDebugInformation': 'true',
},
},
},
'include_dirs': [
'include'
],
'targets': [
{
'target_name': 'libczmq',
'type': 'static_library',
'sources': [
'src/zactor.c',
'src/zarmour.c',
'src/zauth.c',
'src/zauth_v2.c',
'src/zbeacon.c',
'src/zbeacon_v2.c',
'src/zcert.c',
'src/zcertstore.c',
'src/zchunk.c',
'src/zclock.c',
'src/zconfig.c',
'src/zctx.c',
'src/zdigest.c',
'src/zdir.c',
'src/zdir_patch.c',
'src/zfile.c',
'src/zframe.c',
'src/zgossip.c',
'src/zgossip_msg.c',
'src/zhash.c',
'src/zhashx.c',
'src/ziflist.c',
'src/zlist.c',
'src/zlistx.c',
'src/zloop.c',
'src/zmonitor.c',
'src/zmonitor_v2.c',
'src/zmsg.c',
'src/zmutex.c',
'src/zpoller.c',
'src/zproc.c',
'src/zproxy.c',
'src/zproxy_v2.c',
'src/zrex.c',
'src/zsock.c',
'src/zsocket.c',
'src/zsockopt.c',
'src/zstr.c',
'src/zsys.c',
'src/zthread.c',
'src/ztrie.c',
'src/zuuid.c'
]
},
{
'target_name': 'zmakecert',
'type': 'executable',
'sources': [
'src/zmakecert.c'
],
'dependencies': [
'libczmq'
],
'libraries': [
'-lsodium',
'-lzmq',
'-luuid',
'-lsystemd',
'-lpthread'
]
},
{
'target_name': 'czmq_selftest',
'type': 'executable',
'sources': [
'src/czmq_selftest.c'
],
'dependencies': [
'libczmq'
],
'libraries': [
'-lsodium',
'-lzmq',
'-luuid',
'-lsystemd',
'-lpthread'
]
}
]
}