summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/RTCosScheduling/RTCosScheduling.mpc
blob: 08b932cb7747efb685da95b74550fdbc647aaa87 (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
// -*- MPC -*-
// $Id$

project(RTCosScheduling_Server): rtcosscheduling, rt_server, orbsvcsexe, interceptors {
  after    += commonlib
  libs     += testSched_Common
  libpaths += .
  exename   = server

  Source_Files {
    Object1_i.cpp
    server.cpp
  }
  IDL_Files {
  }
}

project(RTCosScheduling_Client): rtcosscheduling, rt_client, orbsvcsexe {
  after    += commonlib
  after    += RTCosScheduling_Server
  libs     += testSched_Common
  libpaths += .
  exename   = client

  Source_Files {
    client.cpp
  }
  IDL_Files {
  }
}

project(commonlib): rtcosscheduling, orbsvcslib {
  requires     += interceptors
  sharedname    = testSched_Common
  idlflags     +=  -Wb,export_macro=testSched_Export \
                   -Wb,export_include=testSched_export.h

  dynamicflags += TESTSCHED_BUILD_DLL
  tagchecks    += testSched_Common

  IDL_Files {
    testSched.idl
  }
  Source_Files {
    testSchedC.cpp
    testSchedS.cpp
  }
}