summaryrefslogtreecommitdiff
path: root/TAO/tests/CodeSets/simple/CodeSets_simple.mpc
blob: a0a9ca666ce9458f409b6ec1a54230122e60f789 (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
// -*- MPC -*-
// $Id$

project(*client) : taoclient, anytypecode {
  after += *server
  IDL_Files {
    simple.idl
  }

  Source_Files {
    client.cpp
    simpleC.cpp
  }

  Header_Files {
    simpleC.h
  }


}

project(*server) : taoserver {
  IDL_Files {
    simple.idl
  }

  source_files {
    server.cpp
    simpleC.cpp
    simpleS.cpp
  }

  Header_Files {
    simpleC.h
    simpleS.h
  }

}