blob: f972a2040d5ca3c7ba5a37222080c637a39c0119 (
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
39
40
41
|
// -*- MPC -*-
// $Id$
// todo : Once MPC is used for everything, we should consider
// removing the includes += lines below, and updating
// the source code instead.
project(*server): namingexe, lifecycle, minimum_corba {
idlflags += -I../../orbsvcs/orbsvcs
includes += ../../orbsvcs/orbsvcs
Source_Files {
server.cpp
Quoter_i.cpp
}
}
project(*client): namingexe, lifecycle, minimum_corba {
idlflags += -I../../orbsvcs/orbsvcs
includes += ../../orbsvcs/orbsvcs
Source_Files {
client.cpp
}
}
project(*Factory Finder): namingexe, lifecycle, minimum_corba {
idlflags += -I../../orbsvcs/orbsvcs
includes += ../../orbsvcs/orbsvcs
Source_Files {
Factory_Finder.cpp
Factory_Finder_i.cpp
}
}
project(*Generic Factory): namingexe, lifecycle, minimum_corba {
idlflags += -I../../orbsvcs/orbsvcs
includes += ../../orbsvcs/orbsvcs
Source_Files {
Generic_Factory.cpp
Generic_Factory_i.cpp
}
}
|