blob: 694a3a5d5e9584c7d9319bd3f0d600e3c3a78844 (
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
|
project: messaging {
idlflags -= -Sc
idlflags += -GC
requires += ami
Source_Files {
ami_test_i.cpp
server.cpp
}
}
project(client): messaging {
exename = client
idlflags -= -Sc
idlflags += -GC
requires += ami
Source_Files {
client.cpp
}
}
project(simple_client): messaging {
exename = simple_client
idlflags -= -Sc
idlflags += -GC
requires += ami
Source_Files {
simple_client.cpp
}
}
|