summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/examples/Security/Send_File/Security_Send_File.mpc
blob: 2d368b64b38e34739988df6d8549aa64335ea020 (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
// -*- MPC -*-
// $Id$

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

project(*Client) : orbsvcsexe, portableserver {
  after   += *Idl
  exename  = client
  source_files {
    testC.cpp
    client.cpp
  }
  IDL_Files {
  }
}

project(*Server) : orbsvcsexe, portableserver {
  after   += *Idl
  exename  = server
  source_files {
    testC.cpp
    testS.cpp
    server.cpp
    test_i.cpp
  }
  IDL_Files {
  }
}