summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/time-date/Simple_time_date.mpc
blob: 5069c2e7c66acffe9612d80aa341491a2c8b6e7e (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
// -*- MPC -*-
// $Id$

project(*lib): portableserver, taolib_with_idl {
  sharedname    = Time_Date
  // The svc conf files assume that the dll is in the current directory
  libout        = .
  idlflags += -Wb,export_macro=Alt_Resource_Factory_Export -Wb,export_include=Alt_Resource_Factory.h
  dynamicflags += ACE_BUILD_SVC_DLL Alt_Resource_Factory_BUILD_DLL
  Source_Files {
    Time_Date.cpp
    Time_Date_i.cpp
  }
  Header_Files {
    Alt_Resource_Factory.h
  }
}

project(*server): taoserver {
  IDL_Files {
  }
  Source_Files {
    server.cpp
  }
  header_files {
  }
}

project(*client): taoclient, namingexe {
  after    += *lib
  libs     += Time_Date
  libpaths += .
  Source_Files {
    client.cpp
    Time_Date_Client_i.cpp
  }
  IDL_Files {
  }
}