repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git]
/
TAO
/
performance-tests
/
POA
/
Implicit_Activation
/
Implicit_Activation.mpc
blob
abc0809c06589476e27cddf8571106098fb91e89
1
// -*- MPC -*-
2
project(*idl): taoidldefaults {
3
idlflags += -Sa -St
4
5
IDL_Files {
6
Test.idl
7
}
8
9
custom_only = 1
10
}
11
12
project(*server): taoserver {
13
after += *idl
14
15
Source_Files {
16
TestC.cpp
17
TestS.cpp
18
Factory.cpp
19
Simple.cpp
20
server.cpp
21
}
22
23
IDL_Files {
24
}
25
}
26
27
project(*client): taoclient {
28
avoids += ace_for_tao
29
after += *idl
30
31
Source_Files {
32
TestC.cpp
33
client.cpp
34
}
35
36
IDL_Files {
37
}
38
}
39
40
project(*collocated): taoserver {
41
avoids += ace_for_tao
42
after += *idl
43
exename = collocated
44
Source_Files {
45
TestC.cpp
46
TestS.cpp
47
Simple.cpp
48
collocated.cpp
49
}
50
51
IDL_Files {
52
}
53
}
54