summaryrefslogtreecommitdiff
path: root/TAO/tests/AMI/AMI.mpc
blob: 7ce5af89d34f7655ec934730f54b49c45b00a0be (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
project(AMI Server): messaging {
  idlflags -= -Sc
  idlflags += -GC
  requires += ami

  Source_Files {
    ami_test_i.cpp
    server.cpp
  }  
}
 
project(AMI Client): messaging {
  exename   = client
  idlflags -= -Sc
  idlflags += -GC
  requires += ami

  Source_Files {
    client.cpp
  }  
}

project(AMI Simple Client): messaging {
  exename   = simple_client
  idlflags -= -Sc
  idlflags += -GC
  requires += ami

  Source_Files {
    simple_client.cpp
  }  
}