summaryrefslogtreecommitdiff
path: root/ACE/examples/Service_Configurator/Misc/Service_Configurator_Misc.mpc
blob: c95de022c3f758257657f2e3808febc7f5294694 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// -*- MPC -*-
// $Id$

project(*Timer) : acelib {
  sharedname = Timer
  dynamicflags += ACE_BUILD_SVC_DLL
  Source_Files {
    Timer_Service.cpp
  }
}
project(*Main) : aceexe {
  exename = main
  after += Service_Configurator_Misc_Timer
  libs  += Timer
  Source_Files {
    main.cpp
  }
}