summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/POA/Implicit_Activation/Implicit_Activation.mpc
blob: b95d547dc66b27b95a07c47ae7f7a471dea88ed5 (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
50
51
52
53
54
55
56
// -*- MPC -*-
// $Id$

project(*idl): taoidldefaults {
  idlflags += -Sa -St

  IDL_Files {
    Test.idl
  }

  custom_only = 1
}

project(*server): taoserver {
  after += *idl

  Source_Files {
    Factory.cpp
    Simple.cpp
    server.cpp
    TestS.cpp
    TestC.cpp
  }

  IDL_Files {
  }
}

project(*client): taoclient {
  avoids += ace_for_tao
  after  += *idl

  Source_Files {
    TestC.cpp
    client.cpp
  }

  IDL_Files {
  }
}

project(*collocated): taoserver {
  avoids += ace_for_tao
  after  += *idl
  exename = collocated
  Source_Files {
    Simple.cpp
    collocated.cpp
    TestS.cpp
    TestC.cpp
  }

  IDL_Files {
  }
}