]>
Commit | Line | Data |
---|---|---|
e969a926 | 1 | # -*- mode: cmake -*- |
2 | ||
3 | set(SRCS | |
4 | BASE/AliHLTComponent.cxx | |
5 | BASE/AliHLTComponentHandler.cxx | |
6 | BASE/AliHLTSystem.cxx | |
7 | BASE/AliHLTReconstructorBase.cxx | |
7bf6c76d | 8 | BASE/AliHLTPluginBase.cxx |
e969a926 | 9 | BASE/AliHLTProcessor.cxx |
10 | BASE/AliHLTCalibrationProcessor.cxx | |
11 | BASE/AliHLTConfiguration.cxx | |
12 | BASE/AliHLTConfigurationHandler.cxx | |
13 | BASE/AliHLTTask.cxx | |
ac5a8530 | 14 | BASE/AliHLTDumpTask.cxx |
f7d3fd75 | 15 | BASE/AliHLTControlTask.cxx |
e969a926 | 16 | BASE/AliHLTLogging.cxx |
17 | BASE/AliHLTDataBuffer.cxx | |
18 | BASE/AliHLTConsumerDescriptor.cxx | |
19 | BASE/AliHLTDataSource.cxx | |
20 | BASE/AliHLTDataSink.cxx | |
21 | BASE/AliHLTOfflineInterface.cxx | |
22 | BASE/AliHLTOfflineDataSource.cxx | |
23 | BASE/AliHLTOfflineDataSink.cxx | |
24 | BASE/AliHLTModuleAgent.cxx | |
25 | BASE/AliHLTModulePreprocessor.cxx | |
26 | BASE/AliHLTShuttleInterface.cxx | |
27 | BASE/AliHLTHOMERLibManager.cxx | |
06272c83 | 28 | BASE/AliHLTHOMERManager.cxx |
29 | BASE/AliHLTHOMERProxyHandler.cxx | |
e969a926 | 30 | BASE/AliHLTHOMERBlockDesc.cxx |
31 | BASE/AliHLTHOMERSourceDesc.cxx | |
32 | BASE/AliHLTEsdManager.cxx | |
2e73c37a | 33 | BASE/AliHLTDAQ.cxx |
e969a926 | 34 | BASE/AliHLTOUT.cxx |
f7d3fd75 | 35 | BASE/AliHLTOUTHandlerChain.cxx |
e969a926 | 36 | BASE/AliHLTOUTHomerBuffer.cxx |
f7d3fd75 | 37 | BASE/AliHLTOUTTask.cxx |
e969a926 | 38 | BASE/AliHLTOUTHandler.cxx |
39 | BASE/AliHLTOUTHandlerEquId.cxx | |
2e73c37a | 40 | BASE/AliHLTOUTHandlerDetectorDDL.cxx |
e969a926 | 41 | BASE/AliHLTMemoryFile.cxx |
42 | BASE/AliHLTMessage.cxx | |
43 | BASE/AliHLTEventStatistics.cxx | |
b51fe2c8 | 44 | BASE/AliHLTBlockDataCollection.cxx |
52647727 | 45 | BASE/AliHLTTriggerDecision.h |
46 | BASE/AliHLTGlobalTriggerDecision.h | |
47 | BASE/AliHLTReadoutList.h | |
48 | BASE/AliHLTTriggerDomain.h | |
49 | BASE/AliHLTDomainEntry.h | |
50 | BASE/AliHLTTriggerMenu.h | |
51 | BASE/AliHLTTriggerMenuItem.h | |
52 | BASE/AliHLTTriggerMenuSymbol.h | |
e969a926 | 53 | BASE/AliHLTRunStatistics.cxx |
54 | BASE/AliHLT_C_Component_WrapperInterface.cxx | |
55 | BASE/AliHLTDataTypes.cxx | |
56 | ) | |
57 | ||
58 | # fill list of header files from list of source files | |
59 | # by exchanging the file extension | |
60 | String(REPLACE ".cxx" ".h" HDRS "${SRCS}") | |
61 | ||
62 | set(HDRS ${HDRS} | |
63 | BASE/AliHLTCommonCDBEntries.h | |
64 | BASE/AliHLTMisc.h | |
65 | BASE/AliHLTDefinitions.h | |
66 | BASE/AliHLTStdIncludes.h | |
67 | ) | |
68 | ||
69 | AddLibrary(HLTbase "${SRCS}" "${HDRS}") | |
70 |