summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tools/Simple_Component_Server/Simple_Component_Server.mpc
blob: eb1f0b5c800d331104d57d0d0fde55898afbc997 (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
project (Simple_Server_Stub) : taolib_with_idl, ciao_client {
  sharedname  = CIAO_Simple_Server_Stub
  idlflags  += -Wb,stub_export_include=Simple_Server_Stub_Export.h -Wb,stub_export_macro=CIAO_SIMPLE_SERVER_STUB_Export
  dynamicflags    = CIAO_SIMPLE_SERVER_STUB_BUILD_DLL

  IDL_Files {
    Simple_Server.idl
  }

  Source_Files {
    Simple_ServerC.cpp
  }
}

project (Simple_Component_Server) : ciao_server {
  after += Simple_Server_Stub
  libs += CIAO_Simple_Server_Stub
  exename = Simple_Component_Server

  Source_Files {
    Simple_ServerS.cpp
    Simple_Server_i.cpp
    Simple_Component_Server.cpp
  }
}

// Use the following settings as a blueprint for creating client project.
project (Simple_Component_Server_test_client) : ciao_server {
  after += Simple_Server_Stub
  libs += CIAO_Simple_Server_Stub
  libpaths += $(CIAO_ROOT)/tools/Simple_Component_Server
  exename = sample_client

  IDL_Files {
  }

  Source_Files {
    sample_client.cpp
  }
}