summaryrefslogtreecommitdiff
path: root/ACE/examples/Timer_Queue/Timer_Queue.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Timer_Queue/Timer_Queue.mpc')
-rw-r--r--ACE/examples/Timer_Queue/Timer_Queue.mpc40
1 files changed, 40 insertions, 0 deletions
diff --git a/ACE/examples/Timer_Queue/Timer_Queue.mpc b/ACE/examples/Timer_Queue/Timer_Queue.mpc
new file mode 100644
index 00000000000..04026c0babd
--- /dev/null
+++ b/ACE/examples/Timer_Queue/Timer_Queue.mpc
@@ -0,0 +1,40 @@
+// -*- MPC -*-
+// $Id$
+
+project(*Library) : acelib {
+ sharedname = tqtd
+ dynamicflags += ACE_BUILD_SVC_DLL
+ Source_Files {
+ Async_Timer_Queue_Test.cpp
+ Driver.cpp
+ Reactor_Timer_Queue_Test.cpp
+ Thread_Timer_Queue_Test.cpp
+ }
+}
+
+project(*Async) : aceexe {
+ exename = Asynch_Timer_Queue_Test
+ after += Timer_Queue_Library
+ libs += tqtd
+ Source_Files {
+ main_async.cpp
+ }
+}
+
+project(*Reactor) : aceexe {
+ exename = Reactor_Timer_Queue_Test
+ after += Timer_Queue_Library
+ libs += tqtd
+ Source_Files {
+ main_reactor.cpp
+ }
+}
+
+project(*Thread) : aceexe {
+ exename = Thread_Timer_Queue_Test
+ after += Timer_Queue_Library
+ libs += tqtd
+ Source_Files {
+ main_thread.cpp
+ }
+}