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 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
// -*- MPC -*-
// $Id: C++NPv2.mpc 90826 2010-06-24 09:07:33Z johnnyw $
// The specific section for gnuace is here to avoid problems
// with parallel builds. Since the libraries in question share source
// files, we need to ensure that one of them is built before all others.
// Also, a specific section was used because you can't set build order
// without setting a build dependency within vc6 and the like.
project(*AC_CLD) : acelib, ssl, threads {
avoids += uses_wchar
sharedname = AC_CLD
dynamicflags += AC_CLD_BUILD_DLL
specific(gnuace) {
after += *CLD
}
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_ace_for_tao {
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 {
avoids += uses_wchar
exename = configurable_logging_server
Source_Files {
Configurable_Logging_Server.cpp
Service_Reporter.cpp
}
}
project(*Display_Logfile) : aceexe, avoids_ace_for_tao {
exename = display_logfile
Source_Files {
display_logfile.cpp
}
}
project(*Reactor_Log_Server) : aceexe, avoids_ace_for_tao {
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_ace_for_tao {
avoids += uses_wchar
exename = select_reactor_logging_server
specific(gnuace) {
after += *Reactor_Log_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_ace_for_tao {
avoids += uses_wchar
sharedname = SLD
dynamicflags += SLD_BUILD_DLL
specific(gnuace) {
after += *CLD
}
Source_Files {
SLD.cpp
Logging_Acceptor.cpp
Logging_Event_Handler.cpp
Logging_Handler.cpp
}
}
project(*SLDex) : acelib, avoids_ace_for_tao {
avoids += uses_wchar
sharedname = SLDex
dynamicflags += SLDEX_BUILD_DLL
specific(gnuace) {
after += *CLD
}
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_ace_for_tao {
avoids += uses_wchar
exename = tp_reactor_logging_server
specific(gnuace) {
after += *Reactor_Log_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
specific(gnuace) {
after += *CLD
}
Source_Files {
TPC_Logging_Server.cpp
Logging_Handler.cpp
}
}
project(*TPLS) : acelib, avoids_ace_for_tao {
avoids += uses_wchar
sharedname = TPLS
dynamicflags += TPLS_BUILD_DLL
specific(gnuace) {
after += *CLD
}
Source_Files {
Logging_Acceptor.cpp
Logging_Event_Handler.cpp
Logging_Handler.cpp
TP_Logging_Server.cpp
}
}
project(*WFMO_Reactor_Log_Server) : aceexe, wfmo, avoids_ace_for_tao {
avoids += uses_wchar
exename = wfmo_reactor_logging_server
specific(gnuace) {
after += *Reactor_Log_Server
}
Source_Files {
Logging_Acceptor.cpp
Logging_Event_Handler.cpp
Logging_Event_Handler_Ex.cpp
Logging_Handler.cpp
WFMO_Reactor_Logging_Server.cpp
}
}
|