summaryrefslogtreecommitdiff
path: root/TAO/examples/Content_Server/AMI_Iterator/AMI_Iterator.mpc
blob: 3172a2ddd7f828d42c096906dea17c7f78e14c31 (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
// -*- MPC -*-
// $Id$

project(*IDL): taoidldefaults, ami {
  IDL_Files {
    Web_Server.idl
  }
  custom_only = 1
}

project(*Server): messaging, taoserver, ami, namingexe {
  exename = server
  after += *IDL
  avoids += ace_for_tao
  Source_Files {
    Content_Iterator_i.cpp
    Iterator_Factory_i.cpp
    server.cpp
    Web_ServerS.cpp
    Web_ServerC.cpp
  }
  IDL_Files {
  }
}

project(*Client): messaging, taoserver, ami, namingexe {
  exename = client
  after += *IDL
  avoids += ace_for_tao
  Source_Files {
    client.cpp
    Iterator_Handler.cpp
    Web_ServerS.cpp
    Web_ServerC.cpp
  }
  IDL_Files {
  }
}