summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/RTCosScheduling/RTCosScheduling.mpc
blob: 01b98729ef59a80d0865dd42c4f76155f6d9146d (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
project(RTCosScheduling_Server): rtcosscheduling, rt_server, orbsvcsexe {
  after += commonlib
  libs += testSched_Common
  libpaths += .
  exename = server
  comps = 
  Source_Files {
    Object1_i.cpp
    server.cpp
  }
}

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

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
  }
}