blob: 27fa1c45d22ec080cfa6e7535a667111d804d9e9 (
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
42
43
44
45
46
47
48
49
|
//$Id$
project(*idl) : tao_versioning_idl_defaults {
custom_only = 1
idlflags += -SS -Sci -Sorb \
-Wb,export_macro=TAO_Codeset_Export \
-Wb,export_include=tao/Codeset/codeset_export.h \
-o Codeset
IDL_Files {
Codeset/CodeSetContext.pidl
}
}
project(Codeset) : taolib, tao_output, install, taoidldefaults, nolink_codecfactory {
sharedname = TAO_Codeset
after += *idl
dynamicflags = TAO_CODESET_BUILD_DLL
pch_header =
pch_source =
Source_Files {
Codeset
}
Source_Files {
Codeset/CodeSetContextC.cpp
}
Header_Files {
Codeset
}
Inline_Files {
Codeset
}
Template_Files {
Codeset
}
Resource_Files {
}
PIDL_Files {
Codeset
}
IDL_Files {
}
}
|