]> git.mxchange.org Git - simgear.git/blob - simgear/hla/Makefile.am
Merge remote branch 'origin/releases/2.2.0' into next
[simgear.git] / simgear / hla / Makefile.am
1 INCLUDES = -I$(top_srcdir)
2
3 lib_LIBRARIES = libsghla.a
4
5 libsghla_adir = @includedir@/hla
6
7 libsghla_a_HEADERS = \
8         RTIData.hxx \
9         HLAArrayDataElement.hxx \
10         HLAArrayDataType.hxx \
11         HLABasicDataElement.hxx \
12         HLABasicDataType.hxx \
13         HLADataElement.hxx \
14         HLADataType.hxx \
15         HLADataTypeVisitor.hxx \
16         HLAEnumeratedDataElement.hxx \
17         HLAEnumeratedDataType.hxx \
18         HLAFixedRecordDataElement.hxx \
19         HLAFixedRecordDataType.hxx \
20         HLAFederate.hxx \
21         HLAInteractionClass.hxx \
22         HLALocation.hxx \
23         HLAObjectClass.hxx \
24         HLAObjectInstance.hxx \
25         HLAOMTXmlVisitor.hxx \
26         HLAPropertyDataElement.hxx \
27         HLARawDataElement.hxx \
28         HLAVariantDataElement.hxx \
29         HLAVariantDataType.hxx
30
31 libsghla_a_SOURCES = \
32         RTIObjectClass.cxx \
33         RTIObjectInstance.cxx \
34         RTIFederate.cxx \
35         HLAArrayDataElement.cxx \
36         HLAArrayDataType.cxx \
37         HLABasicDataElement.cxx \
38         HLABasicDataType.cxx \
39         HLADataElement.cxx \
40         HLADataType.cxx \
41         HLAEnumeratedDataElement.cxx \
42         HLAEnumeratedDataType.cxx \
43         HLAFederate.cxx \
44         HLAFixedRecordDataElement.cxx \
45         HLAFixedRecordDataType.cxx \
46         HLAObjectClass.cxx \
47         HLAObjectInstance.cxx \
48         HLAOMTXmlVisitor.cxx \
49         HLAPropertyDataElement.cxx \
50         HLARawDataElement.cxx \
51         HLAVariantDataElement.cxx \
52         HLAVariantDataType.cxx
53
54 if ENABLE_HLA13
55
56 lib_LIBRARIES += libsghla13.a
57
58 libsghla13_adir = @includedir@/hla
59
60 libsghla13_a_HEADERS = \
61         HLA13Federate.hxx
62
63 libsghla13_a_SOURCES = \
64         RTI13ObjectClass.cxx \
65         RTI13ObjectInstance.cxx \
66         RTI13Federate.cxx \
67         HLA13Federate.cxx
68
69 endif