blob: c56e937ce7e03f3b2b3b30fa7d6ae094c269eac3 (
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
50
51
52
53
54
55
56
57
58
59
|
//$Id$
project(*idl) : tao_versioning_idl_defaults {
custom_only = 1
IDL_Files {
idlflags += -SS -GX \
-Wb,stub_export_macro=TAO_IFR_Client_Export \
-Wb,stub_export_include=tao/IFR_Client/ifr_client_export.h \
-o IFR_Client
idlflags -= -Sa -St
IFR_Client/IFR_Base.pidl
IFR_Client/IFR_Basic.pidl
IFR_Client/IFR_Components.pidl
IFR_Client/IFR_Extended.pidl
}
}
project(IFR_Client) : taolib, tao_output, install, anytypecode, taoidldefaults {
after += *idl
sharedname = TAO_IFR_Client
dynamicflags = TAO_IFR_CLIENT_BUILD_DLL
Source_Files {
IFR_Client
}
Source_Files {
IFR_Client/IFR_BaseC.cpp
IFR_Client/IFR_BasicC.cpp
IFR_Client/IFR_ComponentsC.cpp
IFR_Client/IFR_ExtendedC.cpp
}
Header_Files {
IFR_Client
}
Inline_Files {
IFR_Client
}
Template_Files {
IFR_Client
}
Resource_Files {
IFR_Client
}
PIDL_Files {
IFR_Client
}
IDL_Files {
}
Pkgconfig_Files {
IFR_Client/TAO_IFR_Client.pc.in
}
}
|