summaryrefslogtreecommitdiff
path: root/DAnCE/dance/Plan_Launcher/Daemon/PL_Daemon.mpc
blob: db8db838284e6ec21f14b39916c2d7ebe0a9518a (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
49
50
51
52
53
54
55
56
57
58
59
60
61
// $Id$
project (DAnCE_PL_Daemon_idl) : install, dancelib_with_idl, dance_output, gen_ostream, \
        valuetype, dance_deployment_stub {
  custom_only = 1
  idlflags     += -Wb,stub_export_macro=DANCE_PL_STUB_Export \
                  -Wb,stub_export_include=DAnCE_PL_stub_export.h \
                  -Gxhst

  IDL_Files {
   PL_Daemon.idl
  }

  specific {
   install_dir = dance/Plan_Launcher/Daemon
  }
}

project (DAnCE_PL_Daemon_stub) : install, dance_deployment_stub, dance_output, dance_lib {

  after += DAnCE_PL_Daemon_idl
  dynamicflags += DANCE_PL_STUB_BUILD_DLL
  
  IDL_Files {
  }

  Source_Files {
    PL_DaemonC.cpp
  }

  Header_Files {
    PL_DaemonC.h
  }

  specific {
    install_dir = dance/Plan_Launcher/Daemon
  }
}

project (DAnCE_PL_Daemon) : dance_exe, install, dance_plan_launcher, utils, dance_stub {
   exename = dance_pl_daemon
   after += DAnCE_PL_Daemon_stub
   libs += DAnCE_PL_Daemon_stub
   dynamicflags += DANCE_PL_SKEL_BUILD_DLL

   IDL_Files {
   }

   Source_Files {
     PL_DaemonS.cpp
     PL_Daemon_Impl.cpp
     PL_Daemon.cpp
   }
  
   Header_Files {
     PL_Daemon_Impl.h
   }

   specific {
     install_dir = dance/Plan_Launcher/Daemon
   }
}