summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/OBV/Supports/Supports_Test.mpc
blob: 4dcc86fc472fdcddbfd6bbc62c99818625cf1d8d (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
// $Id$

project(*Server): taoserver, valuetype, strategies {
  // This is just a dummy_label to prevent the test from being compiled
  // in MPC builds
  requires += dummy_label
  Source_Files {
    server.cpp
    Supports_Test_impl.cpp
    Supports_TestC.cpp
    Supports_TestS.cpp
  }
  Header_Files {
    Supports_Test_impl.h
    Supports_TestC.h
    Supports_TestS.h
  }
}

project(*Client): taoclient, taoserver, valuetype {
  // This is just a dummy_label to prevent the test from being compiled
  // in MPC builds
  requires += dummy_label
  exename = client
  after += *Server
  Source_Files {
    client.cpp
    Supports_Test_impl.cpp
    Supports_TestC.cpp
    Supports_TestS.cpp
  }
}