blob: 299504deaae70f44d768fc0fc688dd6eca2a675b (
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
|
project(*idl): taoidldefaults, amh {
idlflags += -Wb,pch_include=amh_pch.h
IDL_Files {
Messenger.idl
}
custom_only = 1
}
project(*Server): taoserver, amh {
exename = MessengerServer
after += *idl
Source_Files {
AMH_Messenger_i.cpp
MessengerServer.cpp
}
Source_Files {
MessengerC.cpp
MessengerS.cpp
}
IDL_Files {
}
}
// This project doesn't really require AMH, but since they
// are in the same directory and share the generated idl code
// it has to be there.
project(*Client): taoclient, amh {
exename = MessengerClient
after += *idl
Source_Files {
MessengerC.cpp
MessengerClient.cpp
}
Source_Files {
MessengerC.cpp
}
IDL_Files {
}
}
|