blob: 06cf093c861578f9c086540bc8501f574b7bccc1 (
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
|
// $Id$
// @file Administrator_Client_IDL3.mpc
//
// @author Don Busch <busch_d@ociweb.com>
project(Administrator_Client_IDL3): ccm_stub, valuetype {
after += Messenger_stub
libs += Messenger_stub
after += Administrator_Client_IDL2_Compile
exename = Administrator_Client_IDL3
IDL_Files {
// IDL stubs are linked from the Messenger_stub library;
// this empty section prevents all of the IDL stub code from
// being linked into this executable as well
}
Header_Files {
// this empty section prevents all of the header files
// being includes in this project
}
Source_Files {
Administrator_Client_IDL3.cpp
}
Inline_Files {
}
}
|