blob: cbb6270caf39625028c4bd12c9176c69a1814c5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//$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 \
-iC tao/Codeset
IDL_Files {
CodeSetContext.pidl
}
}
project(Codeset) : taolib, tao_output, install, taoidldefaults, nolink_codecfactory {
sharedname = TAO_Codeset
after += *idl
dynamicflags += TAO_CODESET_BUILD_DLL
Source_Files {
*.cpp
CodeSetContextC.cpp
}
}
|