Rewrite LLVM's generalized support library for hashing to follow the API
[oota-llvm.git] / lib / Support / CMakeLists.txt
1 ## FIXME: This only requires RTTI because tblgen uses it.  Fix that.
2 set(LLVM_REQUIRES_RTTI 1)
3 if( MINGW )
4   set(LLVM_REQUIRES_EH 1)
5 endif()
6
7 add_llvm_library(LLVMSupport
8   APFloat.cpp
9   APInt.cpp
10   APSInt.cpp
11   Allocator.cpp
12   BlockFrequency.cpp
13   BranchProbability.cpp
14   circular_raw_ostream.cpp
15   CommandLine.cpp
16   ConstantRange.cpp
17   CrashRecoveryContext.cpp
18   DataExtractor.cpp
19   DataStream.cpp
20   Debug.cpp
21   DeltaAlgorithm.cpp
22   DAGDeltaAlgorithm.cpp
23   Dwarf.cpp
24   ErrorHandling.cpp
25   FileUtilities.cpp
26   FoldingSet.cpp
27   FormattedStream.cpp
28   GraphWriter.cpp
29   Hashing.cpp
30   IntEqClasses.cpp
31   IntervalMap.cpp
32   IntrusiveRefCntPtr.cpp
33   IsInf.cpp
34   IsNAN.cpp
35   JSONParser.cpp
36   LockFileManager.cpp
37   ManagedStatic.cpp
38   MemoryBuffer.cpp
39   MemoryObject.cpp
40   PluginLoader.cpp
41   PrettyStackTrace.cpp
42   Regex.cpp
43   SmallPtrSet.cpp
44   SmallVector.cpp
45   SourceMgr.cpp
46   Statistic.cpp
47   StreamableMemoryObject.cpp
48   StringExtras.cpp
49   StringMap.cpp
50   StringPool.cpp
51   StringRef.cpp
52   SystemUtils.cpp
53   Timer.cpp
54   ToolOutputFile.cpp
55   Triple.cpp
56   Twine.cpp
57   raw_os_ostream.cpp
58   raw_ostream.cpp
59   regcomp.c
60   regerror.c
61   regexec.c
62   regfree.c
63   regstrlcpy.c
64
65 # System
66   Atomic.cpp
67   Disassembler.cpp
68   DynamicLibrary.cpp
69   Errno.cpp
70   Host.cpp
71   IncludeFile.cpp
72   Memory.cpp
73   Mutex.cpp
74   Path.cpp
75   PathV2.cpp
76   Process.cpp
77   Program.cpp
78   RWMutex.cpp
79   SearchForAddressOfSpecialSymbol.cpp
80   Signals.cpp
81   system_error.cpp
82   TargetRegistry.cpp
83   ThreadLocal.cpp
84   Threading.cpp
85   TimeValue.cpp
86   Valgrind.cpp
87   Unix/Host.inc
88   Unix/Memory.inc
89   Unix/Mutex.inc
90   Unix/Path.inc
91   Unix/PathV2.inc
92   Unix/Process.inc
93   Unix/Program.inc
94   Unix/RWMutex.inc
95   Unix/Signals.inc
96   Unix/system_error.inc
97   Unix/ThreadLocal.inc
98   Unix/TimeValue.inc
99   Windows/DynamicLibrary.inc
100   Windows/Host.inc
101   Windows/Memory.inc
102   Windows/Mutex.inc
103   Windows/Path.inc
104   Windows/PathV2.inc
105   Windows/Process.inc
106   Windows/Program.inc
107   Windows/RWMutex.inc
108   Windows/Signals.inc
109   Windows/system_error.inc
110   Windows/ThreadLocal.inc
111   Windows/TimeValue.inc
112   )