summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Cubit/TAO/IDL_Cubit/IDL_Cubit.mpc
blob: 4cdf7d539b9f4547c352595896c3242901832363 (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
57
58
59
60
61
62
63
64
65
66
// -*- MPC -*-
// $Id$

project(*IDL): taoidldefaults, strategies {
  idlflags += -Gd

  IDL_Files {
    cubit.idl
  }
  custom_only = 1
}

project(*Server): taoexe, utils, portableserver, strategies {
  exename = server
  after += *IDL

  Source_Files {
    RTI_IO.cpp
    Cubit_i.cpp
    Cubit_Client.cpp
    Cubit_Server.cpp
    server.cpp
    cubitS.cpp
    cubitC.cpp
  }

  IDL_Files {
  }
}

project(*client): taoexe, portableserver, strategies {
  exename = client
  after += *IDL

  Source_Files {
    RTI_IO.cpp
    Cubit_Client.cpp
    client.cpp
    cubitC.cpp
  }

  IDL_Files {
  }
}

project(*collocation): taoexe, utils, portableserver, strategies {
  after += *IDL

  // Note : You can't just prepend collocation/ to the exename
  //        to get it to ouput to that directory. It won't go
  //        to the right place on some platforms. (Windows)
  exename   = collocation_test

  Source_Files {
    RTI_IO.cpp
    collocation_test.cpp
    Cubit_i.cpp
    Cubit_Client.cpp
    Cubit_Server.cpp
    cubitS.cpp
    cubitC.cpp
  }

  IDL_Files {
  }
}