summaryrefslogtreecommitdiff
path: root/ACE/TAO/performance-tests/Cubit/TAO/IDL_Cubit/IDL_Cubit.mpc
blob: fbbf398c02d8436f6ef16d33f5cce6a972e79703 (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
// -*- MPC -*-
// $Id$

project(*IDL): taoidldefaults, strategies {
  idlflags += -Gd
  IDL_Files {
    cubit.idl
  }
  custom_only = 1
}

project(IDL_Cubit_Server): taoserver, utils, strategies, avoids_corba_e_micro, avoids_ace_for_tao {
  after += *IDL
  Source_Files {
    cubitC.cpp
    cubitS.cpp
    RTI_IO.cpp
    Cubit_i.cpp
    Cubit_Client.cpp
    Cubit_Server.cpp
    server.cpp
  }
  IDL_Files {
  }
}

project(*client): taoclient, strategies {
  exename = client
  after += *IDL
  avoids += ace_for_tao
  Source_Files {
    cubitC.cpp
    RTI_IO.cpp
    Cubit_Client.cpp
    client.cpp
  }

  IDL_Files {
  }
}

project(*collocation): taoserver, utils, strategies, avoids_corba_e_micro, avoids_ace_for_tao {
  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 {
    cubitC.cpp
    cubitS.cpp
    RTI_IO.cpp
    collocation_test.cpp
    Cubit_i.cpp
    Cubit_Client.cpp
    Cubit_Server.cpp
  }

  IDL_Files {
  }
}