summaryrefslogtreecommitdiff
path: root/SA_POP/server/Driver.mpc
blob: 6b401738ece000dd62c39f0038e2d67c54b3f67d (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
project(Driver_stub): taolib_with_idl, ciao_race_default {

  after += OpString_stub
  libs += OpString_stub

  IDL_Files {

    Driver.idl
  }

  Header_Files {
    DriverC.h
  }

  Inline_Files {
    DriverC.inl
  }

  Source_Files {
    DriverC.cpp
  }
}

project(Driver_svnt): taolib_with_idl, ciao_race_default {

  after += Driver_stub
  libs += OpString_stub \
          Driver_stub

  IDL_Files {

    Driver.idl
  }

  Header_Files {
    DriverS.h
  }

  Inline_Files {
    DriverS.inl
  }

  Source_Files {
    DriverS.cpp
  }
}

project(Server): ciao_component_dnc, ciao_race_component, ciao_config_handlers, taoexe, ciao_plan_generator {

  exename = server

  after += Driver_svnt SA_POP

  includes += $(CIAO_ROOT)/RACE/Input_Adapters/Interactive_Input_Adapter \
              $(CIAO_ROOT)/tools/Config_Handlers \
              $(CIAO_ROOT)/RACE/SA_POP

  libs += OpString_stub \
          Driver_stub \
          Driver_svnt \
          Interactive_Input_Adapter_stub \
          Input_Adapter_stub \
          Plan_Analyzer_Interface_stub \
          SA_POP

  IDL_Files {
  }

  Header_Files {
    Driver.h
  }

  Source_Files {
    Driver.cpp
    server.cpp
  }
}

project(client): taoclient, ciao_race_component, ciao_component_dnc {

  exename = client

  after += Driver_stub

  libs += Driver_stub

  IDL_Files {
  }

  Source_Files {
    client.cpp
  }
}