summaryrefslogtreecommitdiff
path: root/examples/C++NPv2/C++NPv2.mpc
blob: 5e21c622a7a7cc0f84689d14e972a98bc53f2b48 (plain)
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// -*- MPC -*-
// $Id$

project(*AC_CLD) : acelib, ssl {
  avoids += uses_wchar
  sharedname = AC_CLD
  dynamicflags = AC_CLD_BUILD_DLL
  Source_Files {
    AC_Client_Logging_Daemon.cpp
    Logging_Handler.cpp
  }
}

project(*AIO_CLD) : acelib, ssl {
  sharedname = AIO_CLD
  dynamicflags = AIO_CLD_BUILD_DLL
  Source_Files {
    AIO_Client_Logging_Daemon.cpp
  }
}

project(*CLD) : acelib {
  avoids += uses_wchar
  sharedname = CLD
  dynamicflags = CLD_BUILD_DLL
  Source_Files {
    Client_Logging_Daemon.cpp
    Logging_Acceptor.cpp
    Logging_Event_Handler.cpp
    Logging_Handler.cpp
  }
}

project(*Configurable_Log_Server) : aceexe {
  exename = configurable_logging_server
  Source_Files {
    Configurable_Logging_Server.cpp
    Service_Reporter.cpp
  }
}

project(*Display_Logfile) : aceexe {
  exename = display_logfile
  Source_Files {
    display_logfile.cpp
  }
}

project(*Reactor_Log_Server) : aceexe {
  avoids += uses_wchar
  exename = reactor_logging_server
  Source_Files {
    Logging_Acceptor.cpp
    Logging_Event_Handler.cpp
    Logging_Event_Handler_Ex.cpp
    Logging_Handler.cpp
    Reactor_Logging_Server.cpp
  }
}

project(*Select_Reactor_Log_Server) : aceexe {
  avoids += uses_wchar
  exename = select_reactor_loggin_server
  Source_Files {
    Logging_Acceptor.cpp
    Logging_Event_Handler.cpp
    Logging_Event_Handler_Ex.cpp
    Logging_Handler.cpp
    Select_Reactor_Logging_Server.cpp
  }
}

project(*SLD) : acelib {
  avoids += uses_wchar
  sharedname = SLD
  dynamicflags = SLD_BUILD_DLL
  Source_Files {
    SLD.cpp
    Logging_Acceptor.cpp
    Logging_Event_Handler.cpp
    Logging_Handler.cpp
  }
}

project(*SLDex) : acelib {
  avoids += uses_wchar
  sharedname = SLDex
  dynamicflags = SLDEX_BUILD_DLL
  Source_Files {
    Logging_Acceptor.cpp
    Logging_Event_Handler.cpp
    Logging_Event_Handler_Ex.cpp
    Logging_Handler.cpp
    Reactor_Logging_Server_Adapter.cpp
    Server_Shutdown.cpp
    SLDex.cpp
  }
}

project(*SR_Configurable_Log_Server) : aceexe {
  exename = sr_configurable_logging_server
  Source_Files {
    SR_Configurable_Logging_Server.cpp
  }
}

project(*TP_Reactor_Log_Server) : aceexe {
  avoids += uses_wchar
  exename = tp_reactor_logging_server
  Source_Files {
    Logging_Acceptor.cpp
    Logging_Event_Handler.cpp
    Logging_Event_Handler_Ex.cpp
    Logging_Handler.cpp
    TP_Reactor_Logging_Server.cpp
  }
}

project(*TPCLS) : acelib, ssl {
  avoids += uses_wchar
  sharedname = TPCLS
  dynamicflags = TPCLS_BUILD_DLL
  Source_Files {
    TPC_Logging_Server.cpp
    Logging_Handler.cpp
  }
}

project(*TPLS) : acelib {
  avoids += uses_wchar
  sharedname = TPLS
  dynamicflags = TPLS_BUILD_DLL
  Source_Files {
    Logging_Acceptor.cpp
    Logging_Event_Handler.cpp
    Logging_Handler.cpp
    TP_Logging_Server.cpp
  }
}

project(*WFMO_Reactor_Log_Server) : aceexe, wfmo {
  avoids += uses_wchar
  exename = wfmo_reactor_logging_server
  Source_Files {
    Logging_Acceptor.cpp
    Logging_Event_Handler.cpp
    Logging_Event_Handler_Ex.cpp
    Logging_Handler.cpp
    WFMO_Reactor_Logging_Server.cpp
  }
}