Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / ACE / apps / JAWS / server / server.mpc
blobac4605fbfbc5b0ad73a8e123e80603e6241b6aa5
1 // -*- MPC -*-
2 project(JAWS) : install, ace_output, acelib {
3   sharedname   = JAWS
4   dynamicflags += ACE_BUILD_SVC_DLL
5   requires    += ace_filecache
6   avoids      += uses_wchar
7   avoids      += ace_for_tao
9   specific {
10     install_dir = JAWS/server
11   }
13   Source_Files {
14     HTTP_Server.cpp
15     HTTP_Config.cpp
16     HTTP_Handler.cpp
17     HTTP_Helpers.cpp
18     JAWS_Pipeline.cpp
19     JAWS_Concurrency.cpp
20     HTTP_Request.cpp
21     HTTP_Response.cpp
22     Parse_Headers.cpp
23     JAWS_IO.cpp
24   }
27 project(JAWS_server) : aceexe {
28   exename = main
29   after += JAWS
30   libs  += JAWS
31   requires += ace_filecache
32   avoids += uses_wchar
33   avoids += ace_for_tao
35   Source_Files {
36     main.cpp
37   }