blob: c93c547a7606829c678490ea7de78befec06aff4 (
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(XML_Helpers): acelib, acexml, rtcorba {
sharedname=CIAO_XML_Helpers
idlflags += -Sc -Wb,export_include=XML_Helpers_Export.h
idlflags += -Wb,export_macro=CIAO_XML_HELPERS_Export
dynamicflags += CIAO_XML_HELPERS_BUILD_DLL
IDL_Files {
RTConfiguration.idl
}
Source_Files {
RTConfiguration_Stubs.cpp
RTConfig_Handlers.cpp
XML_Utils.cpp
Softpkg_Handlers.cpp
Cascadable_DocHandler.cpp
Assembly_Spec.cpp
Assembly_Handlers.cpp
}
}
project(Helper_Test): aceexe, acexml, rtcorba {
libs += CIAO_XML_Helpers
after += XML_Helpers
IDL_Files {
}
Source_Files {
main.cpp
}
}
|