summaryrefslogtreecommitdiff
path: root/TAO/tests/Monitor/Marshal_Buffer/marshal_buffer.mpc
blob: c96fdb5f6f3cf20c8808d1fdddec40e20ceefe52 (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 {
  IDL_Files {
    test.idl
  }
  custom_only = 1
}


project(*client): taoclient, tao_monitor, ace_mc {
  after += *idl

  IDL_Files {
  }

  Source_Files {
    client.cpp
    testC.cpp
  }

  Header_Files {
    testC.h
  }

  Inline_Files {
    testC.inl
  }
}

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

  IDL_Files {
  }

  Source_Files {
    server.cpp
    testC.cpp
    testS.cpp
    test_i.cpp
  }

  Header_Files {
    testC.h
    testS.h
    test_i.h
  }

  Inline_Files {
    testC.inl
    testS.inl
  }
}