summaryrefslogtreecommitdiff
path: root/examples/Service_Configurator/Misc/Service_Configurator_Misc.mpc
blob: 9c9744fd6013cdc38d99f66829107739b84900c2 (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
  }
}