summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Object_Loader/Object_Loader.mpc
blob: c8d747c0e04ad67331bdc620d259fd94380a3f2e (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
// -*- MPC -*-
// $Id$

project(*idl): taoidldefaults {
  IDL_Files {
    Test.idl
  }
  custom_only = 1
}

project(*Test): taolib_with_idl, portableserver {
  after += *idl
  sharedname   = Test_DLL
  dynamicflags = OLT_BUILD_DLL

  IDL_Files {
  }

  Source_Files {
    TestC.cpp
    TestS.cpp
    Test_i.cpp
    Loader.cpp
  }
}

project(*Driver): taoserver {
  exename = driver
  after += *Test *idl

  IDL_Files {
  }

  Source_Files {
    TestC.cpp
    driver.cpp
  }
}