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
/
tests
/
Abstract_Interface
/
Abstract_Interface.mpc
blob
046d40dcfa0b08d30fc6c5ded05b87f16f098c6a
1
// -*- MPC -*-
2
project(*idl): taoidldefaults, valuetype {
3
IDL_Files {
4
test.idl
5
}
6
7
custom_only = 1
8
}
9
10
project(*client) : taoclient, valuetype {
11
after += *idl
12
13
IDL_Files {
14
}
15
16
Source_Files {
17
client.cpp
18
testC.cpp
19
}
20
21
Header_Files {
22
testC.h
23
}
24
}
25
26
project(*server) : taoserver, valuetype {
27
after += *client
28
after += *idl
29
30
IDL_Files {
31
}
32
33
Source_Files {
34
server.cpp
35
test_i.cpp
36
testC.cpp
37
testS.cpp
38
}
39
40
Header_Files {
41
test_i.h
42
testC.h
43
testS.h
44
}
45
}