summaryrefslogtreecommitdiff
path: root/TAO/examples/POA/Generic_Servant/POA_Generic_Servant.mpc
blob: 5ddbc1753a3e6d54a44c82764abf2599a55d5049 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// $Id$
project(*lib): taolib_with_idl, portableserver {
  avoids += minimum_corba
  sharedname = Generic_Servant
  dynamicflags = GENERIC_SERVANT_BUILD_DLL
  idlflags += -Wb,export_macro=GENERIC_SERVANT_Export -Wb,export_include=generic_servant_export.h
  Source_Files {
    test_i.cpp
  }
}

project(*client): taoexe, portableserver {
  avoids += minimum_corba
  after += *lib
  libs += Generic_Servant
  idl_files {
  }
  Source_Files {
    client.cpp
  }
}