summaryrefslogtreecommitdiff
path: root/TAO/DevGuideExamples/AMH_AMI/AMH_AMI.mpc
blob: f577e2fc2179464df21f8db41d8235b8bace5e4f (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
project(*idl): taoidldefaults, amh, ami {
  idlflags += -Wb,pch_include=amh_ami_pch.h
  IDL_Files {
    middle.idl
    inner.idl
  }
  custom_only = 1
}

project(*Client): taoclient, messaging {
  after += *idl
  IDL_Files {
  }

  Source_Files {
    middleC.cpp
    client.cpp
  }
}

project(*Middle_Server): messaging, taoserver, amh {
  after += *idl
  exename = middle_server
  IDL_Files {
  }

  Source_Files {
    middleS.cpp
    middleC.cpp
    innerS.cpp
    innerC.cpp
    middle_i.cpp
    middle_server.cpp
    inner_cb.cpp
  }
}

project(*Inner_Server): messaging, taoserver, ami {
  after += *idl
  exename = inner_server
  IDL_Files {
  }
  Source_Files {
    innerS.cpp
    innerC.cpp
    inner_i.cpp
    inner_server.cpp
  }
}