summaryrefslogtreecommitdiff
path: root/ACE/TAO/examples/Simple/time-date/Simple_time_date.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/examples/Simple/time-date/Simple_time_date.mpc')
-rw-r--r--ACE/TAO/examples/Simple/time-date/Simple_time_date.mpc39
1 files changed, 39 insertions, 0 deletions
diff --git a/ACE/TAO/examples/Simple/time-date/Simple_time_date.mpc b/ACE/TAO/examples/Simple/time-date/Simple_time_date.mpc
new file mode 100644
index 00000000000..7eaefad4fc4
--- /dev/null
+++ b/ACE/TAO/examples/Simple/time-date/Simple_time_date.mpc
@@ -0,0 +1,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, iortable, namingexe, portableserver {
+ after += *lib
+ libs += Time_Date
+ libpaths += .
+ Source_Files {
+ client.cpp
+ Time_Date_Client_i.cpp
+ }
+ IDL_Files {
+ }
+}