summaryrefslogtreecommitdiff
path: root/TAO/examples/RTScheduling/Job.mpc
blob: 103df7d95cebf4dde6e64e370c6f43e40d92688a (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
// -*- MPC -*-
// $Id$

project(Job): portableserver {
  idlflags += -St \
              -Wb,export_macro=JOB_Export \
              -Wb,export_include=job_export.h
  after += RTSchedSynch
  libs += RTSchedSynch
  dynamicflags += JOB_BUILD_DLL

  IDL_Files {
    Job.idl
  }

  Source_Files {
    JobC.cpp
    JobS.cpp
  }

  Header_Files {
    JobC.h
    JobS.h
    job_export.h
  }

  Inline_Files {
    JobC.inl
    JobS.inl
  }
}